summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJosh Kearney <josh@jk0.org>2013-01-21 13:44:38 -0600
committerJosh Kearney <josh@jk0.org>2013-01-22 11:44:18 -0600
commitc1ea2989049c102fde0ea22ac06d066a34d7b0db (patch)
tree4622149183ae9a366359e4d0a63f78227591c086 /tests
parent089f4cf7164053ddda9e94254d5a03df6edba44a (diff)
downloadpython-openstackclient-c1ea2989049c102fde0ea22ac06d066a34d7b0db.tar.gz
Clean up test environment and remove unused imports.
First round of adding more complete unit test coverage. Change-Id: Ic1979c499ca6fcb784892a95954a3527539c4e53
Diffstat (limited to 'tests')
-rw-r--r--tests/utils.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/utils.py b/tests/utils.py
index 792fe88e..633442c9 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -2,7 +2,6 @@
import time
-import mox
import testtools
@@ -10,12 +9,9 @@ class TestCase(testtools.TestCase):
def setUp(self):
super(TestCase, self).setUp()
- self.mox = mox.Mox()
self._original_time = time.time
time.time = lambda: 1234
def tearDown(self):
time.time = self._original_time
- self.mox.UnsetStubs()
- self.mox.VerifyAll()
super(TestCase, self).tearDown()