M0: scaffold — uv project, FastAPI health, pytest
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
10
backend/tests/test_health.py
Normal file
10
backend/tests/test_health.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from fastapi.testclient import TestClient
|
||||
|
||||
from tft.api.app import app
|
||||
|
||||
|
||||
def test_health():
|
||||
client = TestClient(app)
|
||||
resp = client.get("/health")
|
||||
assert resp.status_code == 200
|
||||
assert resp.json() == {"status": "ok"}
|
||||
Reference in New Issue
Block a user