From 5d4d90c17c229d8d458fa8a8eb6bdf51ddbc05fb Mon Sep 17 00:00:00 2001 From: andrej Date: Thu, 7 May 2026 16:39:15 +0000 Subject: [PATCH] adding new sample py --- app/test_main.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 app/test_main.py diff --git a/app/test_main.py b/app/test_main.py new file mode 100644 index 0000000..22e98c4 --- /dev/null +++ b/app/test_main.py @@ -0,0 +1,9 @@ +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 + \ No newline at end of file