diff options
author | 2024-08-16 17:53:52 +0100 | |
---|---|---|
committer | 2024-08-16 17:53:52 +0100 | |
commit | 71d1ea51a4e9ccafd56bdcb5dba126f2b1831a36 (patch) | |
tree | 354c4d5c077036b22db6d1a8717fdb1540807929 /tests/test_app.py | |
parent | Add a basic litestar app (diff) |
Move to fastapi & mono repo layout
Diffstat (limited to 'tests/test_app.py')
-rw-r--r-- | tests/test_app.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/test_app.py b/tests/test_app.py deleted file mode 100644 index c856c52..0000000 --- a/tests/test_app.py +++ /dev/null @@ -1,8 +0,0 @@ -from litestar.testing import TestClient - -from thallium.app import app - - -def test_heartbeat() -> None: - with TestClient(app=app) as client: - assert client.get("/heartbeat").json() == {"detail": "I am alive!"} |