require "test_helper" class HomeControllerTest < ActionDispatch::IntegrationTest test "should get index" do get root_url assert_response :success assert_select "h1", "World Tartiflette Tour 2024" end test "should list tartiflettes in the index" do tartiflette = tartiflettes(:one) get root_url assert_response :success # assert_select "li", tartiflette.scoring_id.to_s end end