11 lines
237 B
Python
11 lines
237 B
Python
from fastapi.testclient import TestClient
|
|
|
|
from app.main import app
|
|
|
|
|
|
def test_healthz() -> None:
|
|
client = TestClient(app)
|
|
resp = client.get("/healthz")
|
|
assert resp.status_code == 200
|
|
assert resp.json()["status"] == "ok"
|