hello-learning/blog/test/controllers/welcome_controller_test.rb
2019-08-06 22:50:19 -05:00

9 lines
180 B
Ruby

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