From b0b32937b99fb3f8a18d80c547a718919aa6c005 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Fri, 28 Oct 2016 12:32:52 -0500 Subject: [PATCH] Move v1 resource tests to their own directory The region and inventory tests belong in their own sub-directory of the unit test directory. This will allow future versions of craton to have tests in tests/unit/v2/ that are similarly named. Change-Id: I62b657ac7137009d02c2476a90698f54d2f0fa5a --- cratonclient/tests/unit/v1/__init__.py | 1 + cratonclient/tests/unit/{ => v1}/test_inventory.py | 0 cratonclient/tests/unit/{ => v1}/test_regions.py | 0 3 files changed, 1 insertion(+) create mode 100644 cratonclient/tests/unit/v1/__init__.py rename cratonclient/tests/unit/{ => v1}/test_inventory.py (100%) rename cratonclient/tests/unit/{ => v1}/test_regions.py (100%) diff --git a/cratonclient/tests/unit/v1/__init__.py b/cratonclient/tests/unit/v1/__init__.py new file mode 100644 index 0000000..44c6e7d --- /dev/null +++ b/cratonclient/tests/unit/v1/__init__.py @@ -0,0 +1 @@ +"""Unit tests for cratonclient.v1 submodules.""" diff --git a/cratonclient/tests/unit/test_inventory.py b/cratonclient/tests/unit/v1/test_inventory.py similarity index 100% rename from cratonclient/tests/unit/test_inventory.py rename to cratonclient/tests/unit/v1/test_inventory.py diff --git a/cratonclient/tests/unit/test_regions.py b/cratonclient/tests/unit/v1/test_regions.py similarity index 100% rename from cratonclient/tests/unit/test_regions.py rename to cratonclient/tests/unit/v1/test_regions.py