Files
video2document/test/test_health.py
T
Aarthi Manivannan, Premanathan Aarthi Manivannan 70221683c3 tesing
2025-11-06 15:51:56 +01:00

9 lines
197 B
Python

from fastapi.testclient import TestClient
from app.main import app
client = TestClient(app)
def test_health():
response = client.get("/health")
assert response.status_code == 200