7 lines
198 B
Python
7 lines
198 B
Python
from __future__ import annotations
|
|
|
|
|
|
def test_healthz_returns_ok(client):
|
|
response = client.get("/healthz")
|
|
assert response.status_code == 200
|
|
assert response.json() == {"status": "ok"}
|