From bcc65f0a094cf10916a776b0cefa7bfed2d89905 Mon Sep 17 00:00:00 2001 From: "Rodney, Tiara" Date: Sun, 4 May 2025 01:38:42 +0200 Subject: [PATCH 1/2] refactor(tests): move unit tests to subdirectory this allows for future separation between unit tests and other test types --- tests/{byteb4rb1e_utils => unit}/__init__.py | 0 tests/{byteb4rb1e_utils/io => unit/byteb4rb1e_utils}/__init__.py | 0 tests/unit/byteb4rb1e_utils/io/__init__.py | 0 tests/{ => unit}/byteb4rb1e_utils/io/test_chunksio.py | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename tests/{byteb4rb1e_utils => unit}/__init__.py (100%) rename tests/{byteb4rb1e_utils/io => unit/byteb4rb1e_utils}/__init__.py (100%) create mode 100644 tests/unit/byteb4rb1e_utils/io/__init__.py rename tests/{ => unit}/byteb4rb1e_utils/io/test_chunksio.py (100%) diff --git a/tests/byteb4rb1e_utils/__init__.py b/tests/unit/__init__.py similarity index 100% rename from tests/byteb4rb1e_utils/__init__.py rename to tests/unit/__init__.py diff --git a/tests/byteb4rb1e_utils/io/__init__.py b/tests/unit/byteb4rb1e_utils/__init__.py similarity index 100% rename from tests/byteb4rb1e_utils/io/__init__.py rename to tests/unit/byteb4rb1e_utils/__init__.py diff --git a/tests/unit/byteb4rb1e_utils/io/__init__.py b/tests/unit/byteb4rb1e_utils/io/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/byteb4rb1e_utils/io/test_chunksio.py b/tests/unit/byteb4rb1e_utils/io/test_chunksio.py similarity index 100% rename from tests/byteb4rb1e_utils/io/test_chunksio.py rename to tests/unit/byteb4rb1e_utils/io/test_chunksio.py From 529a2ac39a035b653a79c40237c4a846e85a518e Mon Sep 17 00:00:00 2001 From: "Rodney, Tiara" Date: Sun, 4 May 2025 01:41:49 +0200 Subject: [PATCH 2/2] todo(3): done --- TODO | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TODO b/TODO index 4023049..5ea88bb 100644 --- a/TODO +++ b/TODO @@ -72,7 +72,7 @@ Description: implement a simple circular buffer ID: 3 Type: bugfix Title: move unit tests to subdirectory -Status: in-progress +Status: done Priority: high Created: 2025-05-04 Description: move the unit test suites to a unit/ subdirectory so that