diff options
| author | Joe Heck <heckj@mac.com> | 2011-11-10 20:49:52 -0800 |
|---|---|---|
| committer | Joe Heck <heckj@mac.com> | 2011-11-10 20:49:52 -0800 |
| commit | e109d09304b8a0281b4c590b9179472fa5efa2b2 (patch) | |
| tree | 22ff042ac2d66b0e99d8a8abd61fc1bad834b572 /tests/v2_0 | |
| parent | 5788d215e9a345fca765f2cb53efb0d1f80eb3f8 (diff) | |
| download | python-keystoneclient-e109d09304b8a0281b4c590b9179472fa5efa2b2.tar.gz | |
fixing up the VerifyAll() bits
Diffstat (limited to 'tests/v2_0')
| -rw-r--r-- | tests/v2_0/test_users.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/v2_0/test_users.py b/tests/v2_0/test_users.py index f82f207..fb69559 100644 --- a/tests/v2_0/test_users.py +++ b/tests/v2_0/test_users.py @@ -69,7 +69,6 @@ class UserTests(utils.TestCase): self.assertEqual(user.id, 3) self.assertEqual(user.name, "gabriel") self.assertEqual(user.email, "test@example.com") - self.mox.VerifyAll() def test_delete(self): resp = httplib2.Response({ @@ -83,7 +82,6 @@ class UserTests(utils.TestCase): self.mox.ReplayAll() self.client.users.delete(1) - self.mox.VerifyAll() def test_get(self): resp = httplib2.Response({ @@ -101,7 +99,6 @@ class UserTests(utils.TestCase): self.assertTrue(isinstance(u, users.User)) self.assertEqual(u.id, 1) self.assertEqual(u.name, 'admin') - self.mox.VerifyAll() def test_list(self): resp = httplib2.Response({ @@ -118,7 +115,6 @@ class UserTests(utils.TestCase): user_list = self.client.users.list() [self.assertTrue(isinstance(u, users.User)) for u in user_list] - self.mox.VerifyAll() def test_update(self): req_1 = {"user": {"password": "swordfish", "id": 2}} @@ -160,5 +156,3 @@ class UserTests(utils.TestCase): user = self.client.users.update_email(2, 'gabriel@example.com') user = self.client.users.update_tenant(2, 1) user = self.client.users.update_enabled(2, False) - - self.mox.VerifyAll() |
