Files
aperonight/test/controllers/pages_controller_test.rb
2025-08-28 13:43:05 +02:00

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