15 lines
310 B
Ruby
15 lines
310 B
Ruby
require "test_helper"
|
|
|
|
class PagesControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get home" do
|
|
get root_url
|
|
assert_response :success
|
|
end
|
|
|
|
# Skip legals test since there's no route for it
|
|
# test "should get legals" do
|
|
# get "/legals"
|
|
# assert_response :success
|
|
# end
|
|
end
|