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
+11
View File
@@ -0,0 +1,11 @@
# retoor <retoor@molodetz.nl>
from tests.conftest import BASE_URL
def test_devii_clippy_unavailable(alice):
page, _ = alice
resp = page.request.post(f"{BASE_URL}/devii/clippy/ai/chat", data="{}")
assert resp.status == 503
data = resp.json()
assert "unavailable" in data.get("error", "").lower()