This commit is contained in:
Aarthi Manivannan, Premanathan Aarthi Manivannan
2025-11-06 15:51:56 +01:00
parent a92e33fa59
commit 70221683c3
+8
View File
@@ -0,0 +1,8 @@
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