feat: T03+T04 backend - FastAPI, DB models, Rentman integration, admin auth, APScheduler

This commit is contained in:
Implementation Engineer
2026-07-09 01:36:46 +02:00
parent 3bfa54b4b3
commit 88cff68f73
78 changed files with 2174 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
"""Tests for health endpoint (T03)."""
import pytest
@pytest.mark.asyncio
async def test_health_endpoint(client):
resp = await client.get("/api/health")
assert resp.status_code == 200
data = resp.json()
assert data["status"] == "ok"
assert "db" in data
assert "redis" in data