7a34807fa0
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
5 lines
136 B
Python
5 lines
136 B
Python
def test_health(client):
|
|
resp = client.get("/health")
|
|
assert resp.status_code == 200
|
|
assert resp.json() == {"status": "ok"}
|