Files
aperonight/test/controllers/pages_controller_test.rb
Kevin BATAILLE a8a8c55041 working on header
2025-08-28 14:27:06 +02:00

15 lines
310 B
Ruby
Executable File

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