kaiho/test/controllers/home_controller_test.rb

11 lines
236 B
Ruby
Raw Normal View History

2018-07-15 13:46:05 +00:00
require 'test_helper'
class HomeControllerTest < ActionDispatch::IntegrationTest
test 'should get index' do
get root_url
assert_response :success
assert_select 'title', 'Kaiho'
assert_select 'h3', 'Welcome'
end
end