From 936a99dce037cac86e5aeb13d8fe9bfdb0519c4a Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Fri, 12 Feb 2016 14:03:53 -0500 Subject: [PATCH] move unit tests into the oslotest package Move the tests directory into the package to be consistent with the way we handle other libraries. Change-Id: I9527242fe1d6aa0f7177309b05d8d1f5c8ccd396 Signed-off-by: Doug Hellmann --- {tests => oslotest/tests}/__init__.py | 0 {tests => oslotest/tests}/unit/__init__.py | 0 {tests => oslotest/tests}/unit/test_base.py | 0 {tests => oslotest/tests}/unit/test_createfile.py | 0 {tests => oslotest/tests}/unit/test_log.py | 0 {tests => oslotest/tests}/unit/test_mockpatch.py | 0 {tests => oslotest/tests}/unit/test_moxstubout.py | 0 {tests => oslotest/tests}/unit/test_output.py | 0 {tests => oslotest/tests}/unit/test_timeout.py | 0 9 files changed, 0 insertions(+), 0 deletions(-) rename {tests => oslotest/tests}/__init__.py (100%) rename {tests => oslotest/tests}/unit/__init__.py (100%) rename {tests => oslotest/tests}/unit/test_base.py (100%) rename {tests => oslotest/tests}/unit/test_createfile.py (100%) rename {tests => oslotest/tests}/unit/test_log.py (100%) rename {tests => oslotest/tests}/unit/test_mockpatch.py (100%) rename {tests => oslotest/tests}/unit/test_moxstubout.py (100%) rename {tests => oslotest/tests}/unit/test_output.py (100%) rename {tests => oslotest/tests}/unit/test_timeout.py (100%) diff --git a/tests/__init__.py b/oslotest/tests/__init__.py similarity index 100% rename from tests/__init__.py rename to oslotest/tests/__init__.py diff --git a/tests/unit/__init__.py b/oslotest/tests/unit/__init__.py similarity index 100% rename from tests/unit/__init__.py rename to oslotest/tests/unit/__init__.py diff --git a/tests/unit/test_base.py b/oslotest/tests/unit/test_base.py similarity index 100% rename from tests/unit/test_base.py rename to oslotest/tests/unit/test_base.py diff --git a/tests/unit/test_createfile.py b/oslotest/tests/unit/test_createfile.py similarity index 100% rename from tests/unit/test_createfile.py rename to oslotest/tests/unit/test_createfile.py diff --git a/tests/unit/test_log.py b/oslotest/tests/unit/test_log.py similarity index 100% rename from tests/unit/test_log.py rename to oslotest/tests/unit/test_log.py diff --git a/tests/unit/test_mockpatch.py b/oslotest/tests/unit/test_mockpatch.py similarity index 100% rename from tests/unit/test_mockpatch.py rename to oslotest/tests/unit/test_mockpatch.py diff --git a/tests/unit/test_moxstubout.py b/oslotest/tests/unit/test_moxstubout.py similarity index 100% rename from tests/unit/test_moxstubout.py rename to oslotest/tests/unit/test_moxstubout.py diff --git a/tests/unit/test_output.py b/oslotest/tests/unit/test_output.py similarity index 100% rename from tests/unit/test_output.py rename to oslotest/tests/unit/test_output.py diff --git a/tests/unit/test_timeout.py b/oslotest/tests/unit/test_timeout.py similarity index 100% rename from tests/unit/test_timeout.py rename to oslotest/tests/unit/test_timeout.py