summaryrefslogtreecommitdiffstats
path: root/tests/test_backend_templated.py
diff options
context:
space:
mode:
authorDolph Mathews <dolph.mathews@gmail.com>2012-11-20 10:28:26 -0600
committerDolph Mathews <dolph.mathews@gmail.com>2012-11-20 11:05:17 -0600
commitff669f0da9cbf5250d8bb3e904608677f9164b6c (patch)
tree369225070ad0e21f67c9751d8c16acb7c5bd3b27 /tests/test_backend_templated.py
parent64452c6b55dd3b0320d0ebdd1dc2f4d122c00b2e (diff)
downloadkeystone-ff669f0da9cbf5250d8bb3e904608677f9164b6c.tar.gz
keystone-ff669f0da9cbf5250d8bb3e904608677f9164b6c.tar.xz
keystone-ff669f0da9cbf5250d8bb3e904608677f9164b6c.zip
v3 Catalog
- v3 catalog tests (bug 1023933) - v3 catalog implementation (bug 1023938) Change-Id: Ie118819d25afbff62327ffc8be5b5fda2ef7f4ed
Diffstat (limited to 'tests/test_backend_templated.py')
-rw-r--r--tests/test_backend_templated.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/test_backend_templated.py b/tests/test_backend_templated.py
index 55cede2e..31d77acd 100644
--- a/tests/test_backend_templated.py
+++ b/tests/test_backend_templated.py
@@ -15,7 +15,6 @@
# under the License.
import os
-import uuid
from keystone import catalog
from keystone.catalog.backends import templated as catalog_templated
@@ -67,19 +66,3 @@ class TestTemplatedCatalog(test.TestCase, test_backend.CatalogTests):
'http://localhost:$(compute_port)s/v1.1/$(tenant)s'
with self.assertRaises(exception.MalformedEndpoint):
self.catalog_api.get_catalog('fake-user', 'fake-tenant')
-
- def test_create_endpoint_404(self):
- self.assertRaises(exception.NotImplemented,
- self.catalog_api.create_endpoint,
- uuid.uuid4().hex,
- {})
-
- def test_get_endpoint_404(self):
- self.assertRaises(exception.NotImplemented,
- self.catalog_api.get_endpoint,
- uuid.uuid4().hex)
-
- def test_delete_endpoint_404(self):
- self.assertRaises(exception.NotImplemented,
- self.catalog_api.delete_endpoint,
- uuid.uuid4().hex)