Prepare dev instructure

This commit is contained in:
kbe
2025-08-16 09:00:38 +02:00
parent d96fb4be95
commit ed659c423e
15 changed files with 1434 additions and 27 deletions

View File

@@ -0,0 +1,13 @@
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