require "test_helper" class LivresControllerTest < ActionDispatch::IntegrationTest test "should get index" do get livres_index_url assert_response :success end test "should get new" do get livres_new_url assert_response :success end test "should get create" do get livres_create_url assert_response :success end end