feat: project skeleton with health endpoint

This commit is contained in:
Joseph Doherty
2026-04-26 11:23:38 -04:00
parent f0594c24d2
commit 4a60171035
7 changed files with 47 additions and 0 deletions
View File
+9
View File
@@ -0,0 +1,9 @@
from fastapi.testclient import TestClient
from chat.app import app
def test_health_endpoint_returns_ok():
client = TestClient(app)
response = client.get("/health")
assert response.status_code == 200
assert response.json() == {"status": "ok"}