Initial commit

This commit is contained in:
belviskhoremk
2026-03-06 22:57:58 +00:00
commit c4d836a0f9
60 changed files with 5423 additions and 0 deletions

13
tests/test_health.py Normal file
View File

@@ -0,0 +1,13 @@
"""Basic smoke tests."""
def test_health_check(client):
response = client.get("/health")
assert response.status_code == 200
data = response.json()
assert data["status"] == "healthy"
def test_docs_available_in_debug(client):
response = client.get("/docs")
assert response.status_code == 200