quartermaster/tests/test_health.py
2026-04-19 12:12:55 -06:00

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"}