From acf9d6214eefcd11a5bf2d25f12858b3c3f2aa54 Mon Sep 17 00:00:00 2001 From: Tobias Witek Date: Sat, 25 Jan 2020 14:27:41 +0100 Subject: [PATCH] [tests] Restructure Put tests into directory structure equivalent to that of the code itself, for better separation (hopefully) --- tests/__init__.py | 0 tests/core/__init__.py | 0 tests/{ => core}/test_config.py | 0 tests/{ => core}/test_module.py | 0 tests/{ => core}/test_output.py | 0 tests/util/__init__.py | 0 tests/{ => util}/test_store.py | 0 7 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 tests/__init__.py create mode 100644 tests/core/__init__.py rename tests/{ => core}/test_config.py (100%) rename tests/{ => core}/test_module.py (100%) rename tests/{ => core}/test_output.py (100%) create mode 100644 tests/util/__init__.py rename tests/{ => util}/test_store.py (100%) diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/core/__init__.py b/tests/core/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/test_config.py b/tests/core/test_config.py similarity index 100% rename from tests/test_config.py rename to tests/core/test_config.py diff --git a/tests/test_module.py b/tests/core/test_module.py similarity index 100% rename from tests/test_module.py rename to tests/core/test_module.py diff --git a/tests/test_output.py b/tests/core/test_output.py similarity index 100% rename from tests/test_output.py rename to tests/core/test_output.py diff --git a/tests/util/__init__.py b/tests/util/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/test_store.py b/tests/util/test_store.py similarity index 100% rename from tests/test_store.py rename to tests/util/test_store.py