14 lines
264 B
Ruby
14 lines
264 B
Ruby
require "test_helper"
|
|
|
|
class PagesControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get home" do
|
|
get pages_home_url
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get legals" do
|
|
get pages_legals_url
|
|
assert_response :success
|
|
end
|
|
end
|