From 70221683c327abbd8c2d2163115ad4b7e020658c Mon Sep 17 00:00:00 2001 From: "Aarthi Manivannan, Premanathan Aarthi Manivannan" Date: Thu, 6 Nov 2025 15:51:56 +0100 Subject: [PATCH] tesing --- test/test_health.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test/test_health.py diff --git a/test/test_health.py b/test/test_health.py new file mode 100644 index 0000000..7b088a7 --- /dev/null +++ b/test/test_health.py @@ -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