Files
wedding/test/controllers/welcome_controller_test.rb
John Lees-Miller 6e82ba528b Make open source
2018-10-27 16:46:26 +01:00

9 lines
179 B
Ruby

require 'test_helper'
class WelcomeControllerTest < ActionDispatch::IntegrationTest
test 'should get index' do
get welcome_index_url
assert_response :success
end
end