20 lines
377 B
Ruby
20 lines
377 B
Ruby
|
require "test_helper"
|
||
|
|
||
|
class StaticPagesControllerTest < ActionDispatch::IntegrationTest
|
||
|
test "should get home" do
|
||
|
get static_pages_home_url
|
||
|
assert_response :success
|
||
|
end
|
||
|
|
||
|
test "should get help" do
|
||
|
get static_pages_help_url
|
||
|
assert_response :success
|
||
|
end
|
||
|
|
||
|
test "Should get about" do
|
||
|
get static_pages_about_url
|
||
|
assert_response :success
|
||
|
end
|
||
|
end
|
||
|
|