summaryrefslogtreecommitdiffstats
path: root/tests/test_backend_kvs.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_backend_kvs.py')
-rw-r--r--tests/test_backend_kvs.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/test_backend_kvs.py b/tests/test_backend_kvs.py
index e1d99d47..74b5e4eb 100644
--- a/tests/test_backend_kvs.py
+++ b/tests/test_backend_kvs.py
@@ -22,6 +22,7 @@ from keystone import exception
from keystone.identity.backends import kvs as identity_kvs
from keystone import test
from keystone.token.backends import kvs as token_kvs
+from keystone.trust.backends import kvs as trust_kvs
import default_fixtures
import test_backend
@@ -71,6 +72,15 @@ class KvsToken(test.TestCase, test_backend.TokenTests):
self.token_api = token_kvs.Token(db={})
+class KvsTrust(test.TestCase, test_backend.TrustTests):
+ def setUp(self):
+ super(KvsTrust, self).setUp()
+ self.trust_api = trust_kvs.Trust(db={})
+ self.identity_api = identity_kvs.Identity(db={})
+ self.catalog_api = catalog_kvs.Catalog(db={})
+ self.load_fixtures(default_fixtures)
+
+
class KvsCatalog(test.TestCase, test_backend.CatalogTests):
def setUp(self):
super(KvsCatalog, self).setUp()