chore: linting stuff

This commit is contained in:
kbe
2025-08-25 00:43:03 +02:00
parent 03717dc95b
commit 632055c44d
14 changed files with 107 additions and 43 deletions

View File

@@ -2,12 +2,13 @@ require "test_helper"
class PagesControllerTest < ActionDispatch::IntegrationTest
test "should get home" do
get pages_home_url
get root_url
assert_response :success
end
test "should get legals" do
get pages_legals_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