summaryrefslogtreecommitdiff
path: root/openstackclient/tests/__init__.py
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2013-06-30 23:01:17 -0400
committerMonty Taylor <mordred@inaugust.com>2013-06-30 23:30:54 -0400
commit196daf859b1557fba24dbcf9870d3a834da86916 (patch)
tree8840bd4858319e2e5dfc40a2650bfb272b7ac737 /openstackclient/tests/__init__.py
parent108f78d98994435fbd234196b3f23948b4c8bca6 (diff)
downloadpython-openstackclient-196daf859b1557fba24dbcf9870d3a834da86916.tar.gz
Move tests into project package.
There are several reasons for this. One is that the majority of OpenStack packages behave this way. The second is that it makes writing software that extends something easier to test (which is a clear usecase for openstackclient) And third, tests/__init__.py implies a global package named "tests" - which I'm pretty sure we're not providing. Change-Id: Ic708ffd92aea78c2ffc1a8579af0587af4fca4ff
Diffstat (limited to 'openstackclient/tests/__init__.py')
-rw-r--r--openstackclient/tests/__init__.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/openstackclient/tests/__init__.py b/openstackclient/tests/__init__.py
new file mode 100644
index 00000000..85ac2501
--- /dev/null
+++ b/openstackclient/tests/__init__.py
@@ -0,0 +1,14 @@
+# Copyright 2012-2013 OpenStack, LLC.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+#