summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorseth <[email protected]>2023-01-09 23:34:50 -0500
committerseth <[email protected]>2023-01-09 23:34:50 -0500
commita60707fcac4e46d58199f0aa82420061572fb1b5 (patch)
tree99ee4f3978fca27d543e5c789f099df62bacdd8c /tests
feat: initial commit
Diffstat (limited to 'tests')
-rw-r--r--tests/test_all.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/test_all.py b/tests/test_all.py
new file mode 100644
index 0000000..3a405eb
--- /dev/null
+++ b/tests/test_all.py
@@ -0,0 +1,13 @@
+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"}