10 lines
174 B
Ruby
10 lines
174 B
Ruby
|
require 'test_helper'
|
||
|
|
||
|
class PagesControllerTest < ActionDispatch::IntegrationTest
|
||
|
test "should get home" do
|
||
|
get pages_home_url
|
||
|
assert_response :success
|
||
|
end
|
||
|
|
||
|
end
|