Move db related unittests to proper places

It is expected, that unittests cover project modules in relation 1:1 and
placed in appropriate tree as main modules do.

It should be like in example:
manila/[tests/]foo/bar/[test_]modulename.py

Change-Id: I890deaeb41b87a6ae82868905144fd7477272058
Partial-Bug: #1348633
This commit is contained in:
vponomaryov 2014-09-08 18:21:31 +03:00 committed by Valeriy Ponomaryov
parent 50f8b60b2c
commit 113ddb42ba
5 changed files with 2 additions and 2 deletions

View File

View File

@ -20,9 +20,9 @@ from manila.db import migration
from manila import test
class AlembicCommandTestCase(test.TestCase):
class MigrationTestCase(test.TestCase):
def setUp(self):
super(AlembicCommandTestCase, self).setUp()
super(MigrationTestCase, self).setUp()
self.config_patcher = mock.patch(
'manila.db.migrations.alembic.migration._alembic_config')
self.config = self.config_patcher.start()