DistroPropaganda/demo/test/controllers/say_controller_test.rb
2018-11-23 17:31:53 +01:00

14 lines
263 B
Ruby

require 'test_helper'
class SayControllerTest < ActionDispatch::IntegrationTest
test "should get hello" do
get say_hello_url
assert_response :success
end
test "should get goodbye" do
get say_goodbye_url
assert_response :success
end
end