summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorseth <[email protected]>2023-04-23 02:27:01 -0400
committerseth <[email protected]>2023-04-23 02:27:01 -0400
commitee17bbadfed47af24572919d143f260c9c57bb36 (patch)
treed3fbb67ff1bd6d0857cb5e9d97cf04b2945c48d4 /tests
parent3c02d2353d8bdfd2b6e5a09ac17214bae76664d7 (diff)
feat: add nix flake
Diffstat (limited to 'tests')
-rw-r--r--tests/test_all.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/test_all.py b/tests/test_all.py
deleted file mode 100644
index 3a405eb..0000000
--- a/tests/test_all.py
+++ /dev/null
@@ -1,13 +0,0 @@
-from fastapi.testclient import TestClient
-
-from guzzle_api.api import app
-
-client = TestClient(app)
-
-resp = client.get("/get_random_teawie").text
-print(f"random:\n {resp}")
-
-resp = client.get("/list_teawies?limit=6").text
-print(f"list:\n {resp}")
-
-tests = {"/list_teawies"}