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