14 lines
262 B
Ruby
14 lines
262 B
Ruby
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
|