Move tests into cinderclient package.

tests/__init__.py implies a package in the global namespace called
tests. That's not what these are - they're tests in the cinderclient
namespace.

Change-Id: I29c95bcd8747c3f5f21d5d900879c9b6b1c9a963
This commit is contained in:
Monty Taylor
2013-05-18 09:22:23 -07:00
parent c82a811301
commit bf1ce848e6
32 changed files with 41 additions and 41 deletions

View File

@@ -1,8 +1,8 @@
from cinderclient import base from cinderclient import base
from cinderclient import exceptions from cinderclient import exceptions
from cinderclient.v1 import volumes from cinderclient.v1 import volumes
from tests import utils from cinderclient.tests import utils
from tests.v1 import fakes from cinderclient.tests.v1 import fakes
cs = fakes.FakeClient() cs = fakes.FakeClient()

View File

@@ -2,7 +2,7 @@
import cinderclient.client import cinderclient.client
import cinderclient.v1.client import cinderclient.v1.client
import cinderclient.v2.client import cinderclient.v2.client
from tests import utils from cinderclient.tests import utils
class ClientTest(utils.TestCase): class ClientTest(utils.TestCase):

View File

@@ -4,7 +4,7 @@ import requests
from cinderclient import client from cinderclient import client
from cinderclient import exceptions from cinderclient import exceptions
from tests import utils from cinderclient.tests import utils
fake_response = utils.TestResponse({ fake_response = utils.TestResponse({

View File

@@ -1,6 +1,6 @@
from cinderclient import exceptions from cinderclient import exceptions
from cinderclient import service_catalog from cinderclient import service_catalog
from tests import utils from cinderclient.tests import utils
# Taken directly from keystone/content/common/samples/auth.json # Taken directly from keystone/content/common/samples/auth.json

View File

@@ -8,7 +8,7 @@ from testtools import matchers
from cinderclient import exceptions from cinderclient import exceptions
import cinderclient.shell import cinderclient.shell
from tests import utils from cinderclient.tests import utils
class ShellTest(utils.TestCase): class ShellTest(utils.TestCase):

View File

@@ -5,7 +5,7 @@ import sys
from cinderclient import exceptions from cinderclient import exceptions
from cinderclient import utils from cinderclient import utils
from cinderclient import base from cinderclient import base
from tests import utils as test_utils from cinderclient.tests import utils as test_utils
UUID = '8e8ec658-c7b0-4243-bdf8-6f7f2952c0d0' UUID = '8e8ec658-c7b0-4243-bdf8-6f7f2952c0d0'

View File

@@ -1,8 +1,8 @@
from cinderclient import extension from cinderclient import extension
from cinderclient.v1.contrib import list_extensions from cinderclient.v1.contrib import list_extensions
from tests import utils from cinderclient.tests import utils
from tests.v1 import fakes from cinderclient.tests.v1 import fakes
extensions = [ extensions = [

View File

@@ -16,9 +16,9 @@
import urlparse import urlparse
from cinderclient import client as base_client from cinderclient import client as base_client
from cinderclient.tests import fakes
import cinderclient.tests.utils as utils
from cinderclient.v1 import client from cinderclient.v1 import client
from tests import fakes
import tests.utils as utils
def _stub_volume(**kwargs): def _stub_volume(**kwargs):

View File

@@ -5,7 +5,7 @@ import requests
from cinderclient.v1 import client from cinderclient.v1 import client
from cinderclient import exceptions from cinderclient import exceptions
from tests import utils from cinderclient.tests import utils
class AuthenticateAgainstKeystoneTests(utils.TestCase): class AuthenticateAgainstKeystoneTests(utils.TestCase):

View File

@@ -13,8 +13,8 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tests import utils from cinderclient.tests import utils
from tests.v1 import fakes from cinderclient.tests.v1 import fakes
cs = fakes.FakeClient() cs = fakes.FakeClient()

View File

@@ -13,8 +13,8 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tests import utils from cinderclient.tests import utils
from tests.v1 import fakes from cinderclient.tests.v1 import fakes
cs = fakes.FakeClient() cs = fakes.FakeClient()

View File

@@ -22,8 +22,8 @@ import fixtures
from cinderclient import client from cinderclient import client
from cinderclient import shell from cinderclient import shell
from cinderclient.v1 import shell as shell_v1 from cinderclient.v1 import shell as shell_v1
from tests.v1 import fakes from cinderclient.tests.v1 import fakes
from tests import utils from cinderclient.tests import utils
class ShellTest(utils.TestCase): class ShellTest(utils.TestCase):

View File

@@ -1,7 +1,7 @@
from cinderclient import exceptions from cinderclient import exceptions
from cinderclient.v1 import volume_types from cinderclient.v1 import volume_types
from tests import utils from cinderclient.tests import utils
from tests.v1 import fakes from cinderclient.tests.v1 import fakes
cs = fakes.FakeClient() cs = fakes.FakeClient()

View File

@@ -13,8 +13,8 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tests import utils from cinderclient.tests import utils
from tests.v1 import fakes from cinderclient.tests.v1 import fakes
cs = fakes.FakeClient() cs = fakes.FakeClient()

View File

@@ -1,5 +1,5 @@
from tests import utils from cinderclient.tests import utils
from tests.v1 import fakes from cinderclient.tests.v1 import fakes
cs = fakes.FakeClient() cs = fakes.FakeClient()

View File

@@ -16,8 +16,8 @@
from cinderclient import extension from cinderclient import extension
from cinderclient.v2.contrib import list_extensions from cinderclient.v2.contrib import list_extensions
from tests import utils from cinderclient.tests import utils
from tests.v1 import fakes from cinderclient.tests.v1 import fakes
extensions = [ extensions = [

View File

@@ -15,9 +15,9 @@
import urlparse import urlparse
from cinderclient import client as base_client from cinderclient import client as base_client
from cinderclient.tests import fakes
import cinderclient.tests.utils as utils
from cinderclient.v2 import client from cinderclient.v2 import client
from tests import fakes
import tests.utils as utils
def _stub_volume(**kwargs): def _stub_volume(**kwargs):

View File

@@ -21,7 +21,7 @@ import requests
from cinderclient import exceptions from cinderclient import exceptions
from cinderclient.v2 import client from cinderclient.v2 import client
from tests import utils from cinderclient.tests import utils
class AuthenticateAgainstKeystoneTests(utils.TestCase): class AuthenticateAgainstKeystoneTests(utils.TestCase):

View File

@@ -13,8 +13,8 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tests import utils from cinderclient.tests import utils
from tests.v2 import fakes from cinderclient.tests.v2 import fakes
cs = fakes.FakeClient() cs = fakes.FakeClient()

View File

@@ -13,8 +13,8 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tests import utils from cinderclient.tests import utils
from tests.v2 import fakes from cinderclient.tests.v2 import fakes
cs = fakes.FakeClient() cs = fakes.FakeClient()

View File

@@ -17,8 +17,8 @@ import fixtures
from cinderclient import client from cinderclient import client
from cinderclient import shell from cinderclient import shell
from tests import utils from cinderclient.tests import utils
from tests.v2 import fakes from cinderclient.tests.v2 import fakes
class ShellTest(utils.TestCase): class ShellTest(utils.TestCase):

View File

@@ -15,8 +15,8 @@
# under the License. # under the License.
from cinderclient.v2 import volume_types from cinderclient.v2 import volume_types
from tests import utils from cinderclient.tests import utils
from tests.v2 import fakes from cinderclient.tests.v2 import fakes
cs = fakes.FakeClient() cs = fakes.FakeClient()

View File

@@ -13,8 +13,8 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tests import utils from cinderclient.tests import utils
from tests.v2 import fakes from cinderclient.tests.v2 import fakes
cs = fakes.FakeClient() cs = fakes.FakeClient()

View File

@@ -14,8 +14,8 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tests import utils from cinderclient.tests import utils
from tests.v2 import fakes from cinderclient.tests.v2 import fakes
cs = fakes.FakeClient() cs = fakes.FakeClient()