require "test_helper" class WorksControllerTest < ActionDispatch::IntegrationTest test "should get index" do get works_index_url assert_response :success end test "should get show" do get works_show_url assert_response :success end end