From fde47d57396c4d35dfe467e91215fbec5bb2f69a Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Thu, 6 Apr 2017 07:32:56 +0900 Subject: [PATCH] Organise tests --- .gitignore | 2 ++ tests/{ => lib}/test_addresses.py | 0 tests/{ => lib}/test_util.py | 0 tests/{ => server}/test_storage.py | 0 4 files changed, 2 insertions(+) rename tests/{ => lib}/test_addresses.py (100%) rename tests/{ => lib}/test_util.py (100%) rename tests/{ => server}/test_storage.py (100%) diff --git a/.gitignore b/.gitignore index 7bacdd8..d5727dd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ */__pycache__/ +.cache/ +tests/*/__pycache__/ */*~ *.#* *# diff --git a/tests/test_addresses.py b/tests/lib/test_addresses.py similarity index 100% rename from tests/test_addresses.py rename to tests/lib/test_addresses.py diff --git a/tests/test_util.py b/tests/lib/test_util.py similarity index 100% rename from tests/test_util.py rename to tests/lib/test_util.py diff --git a/tests/test_storage.py b/tests/server/test_storage.py similarity index 100% rename from tests/test_storage.py rename to tests/server/test_storage.py