diff --git a/tests/test_health.py b/tests/test_health.py new file mode 100644 index 0000000..5b89cd8 --- /dev/null +++ b/tests/test_health.py @@ -0,0 +1,6 @@ +app = FastAPI() + + +@app.get("/health") +async def read_health(): + return {"status": "ok"} \ No newline at end of file