From a60707fcac4e46d58199f0aa82420061572fb1b5 Mon Sep 17 00:00:00 2001 From: seth Date: Mon, 9 Jan 2023 23:34:50 -0500 Subject: feat: initial commit --- tests/test_all.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tests/test_all.py (limited to 'tests') 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"} -- cgit v1.2.3