diff options
| author | Jenkins <jenkins@review.openstack.org> | 2013-01-28 07:57:04 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-01-28 07:57:04 +0000 |
| commit | 03dd4e7d4eb751bfad58322600464852942d5af9 (patch) | |
| tree | 71d4bbb19edf558406d07cd8a917a8ef8c74d0c0 /tests/unit/test_processutils.py | |
| parent | 73c7cdc65f2c64f49139bbd2bb738635a34316e1 (diff) | |
| parent | 8c80224ecb5194a5e2ed5f74f1c7f457202d21a3 (diff) | |
| download | oslo-03dd4e7d4eb751bfad58322600464852942d5af9.tar.gz oslo-03dd4e7d4eb751bfad58322600464852942d5af9.tar.xz oslo-03dd4e7d4eb751bfad58322600464852942d5af9.zip | |
Merge "Replace direct use of testtools BaseTestCase."
Diffstat (limited to 'tests/unit/test_processutils.py')
| -rw-r--r-- | tests/unit/test_processutils.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/unit/test_processutils.py b/tests/unit/test_processutils.py index a140aaa..13d0846 100644 --- a/tests/unit/test_processutils.py +++ b/tests/unit/test_processutils.py @@ -15,14 +15,13 @@ # License for the specific language governing permissions and limitations # under the License. -import testtools - import mock from openstack.common import processutils +from tests import utils -class UtilsTest(testtools.TestCase): +class UtilsTest(utils.BaseTestCase): # NOTE(jkoelker) Moar tests from nova need to be ported. But they # need to be mock'd out. Currently they requre actually # running code. @@ -32,7 +31,7 @@ class UtilsTest(testtools.TestCase): hozer=True) -class ProcessExecutionErrorTest(testtools.TestCase): +class ProcessExecutionErrorTest(utils.BaseTestCase): def test_defaults(self): err = processutils.ProcessExecutionError() |
