From 71637d9741db99c08f3b88c1555cf7c4dcd939f1 Mon Sep 17 00:00:00 2001 From: Jon Michael Aanes Date: Fri, 15 Mar 2024 16:59:39 +0100 Subject: [PATCH] Added test to satisfy workflow --- test/test_init.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/test_init.py diff --git a/test/test_init.py b/test/test_init.py new file mode 100644 index 0000000..c89e235 --- /dev/null +++ b/test/test_init.py @@ -0,0 +1,7 @@ + +import requests_util + +def test_init(): + session = requests_util.initialize_session() + assert session is not None +