From 47ae62afa9cfcd8ac754cf3c044795baff038b59 Mon Sep 17 00:00:00 2001 From: Mark Hoekveen Date: Sun, 4 Dec 2022 19:32:57 +0100 Subject: [PATCH] Moves tests to module --- tests/__init__.py | 1 + tests.py => tests/general.py | 0 2 files changed, 1 insertion(+) create mode 100644 tests/__init__.py rename tests.py => tests/general.py (100%) diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..ac22dce --- /dev/null +++ b/tests/__init__.py @@ -0,0 +1 @@ +from .general import TestGeneral \ No newline at end of file diff --git a/tests.py b/tests/general.py similarity index 100% rename from tests.py rename to tests/general.py