chore: reorganize test files into domain-specific subdirectories

This commit is contained in:
2026-06-13 14:32:33 +00:00
parent 8eac4cafba
commit eccec02336
268 changed files with 20634 additions and 9206 deletions
View File
+10
View File
@@ -0,0 +1,10 @@
# retoor <retoor@molodetz.nl>
import requests
from tests.conftest import BASE_URL
def test_404_renders_error_page(app_server):
r = requests.get(f"{BASE_URL}/this-page-does-not-exist-xyz")
assert r.status_code == 404
assert "404" in r.text or "not found" in r.text.lower()