11 lines
232 B
Python
11 lines
232 B
Python
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"}
|