From 5d85d44bd3277d6833038caa277378ac171628e1 Mon Sep 17 00:00:00 2001 From: "backend.im" Date: Sat, 15 Mar 2025 01:43:52 +0000 Subject: [PATCH] Add tests/test_health.py --- tests/test_health.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tests/test_health.py 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