From 63ed421823604d3833f2657b187683ca53b3fefc Mon Sep 17 00:00:00 2001 From: EremeevRA Date: Mon, 23 Mar 2026 14:11:08 +0300 Subject: [PATCH] test --- api/tests/test_app.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/api/tests/test_app.py b/api/tests/test_app.py index 779c697..8a29c20 100644 --- a/api/tests/test_app.py +++ b/api/tests/test_app.py @@ -17,3 +17,8 @@ def test_root() -> None: assert resp.status_code == 200 assert resp.json() == {"message": "FastAPI is running"} + +def test_checker() -> None: + a = 1 + assert a == 1 +