summaryrefslogtreecommitdiffstats
path: root/tests/test_drivers.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_drivers.py')
-rw-r--r--tests/test_drivers.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_drivers.py b/tests/test_drivers.py
index 439b0d30..c83c1a89 100644
--- a/tests/test_drivers.py
+++ b/tests/test_drivers.py
@@ -1,6 +1,7 @@
import inspect
import unittest2 as unittest
+from keystone import assignment
from keystone import catalog
from keystone import exception
from keystone import identity
@@ -35,6 +36,10 @@ class TestDrivers(unittest.TestCase):
if name[0] != '_' and callable(method):
self.assertMethodNotImplemented(method)
+ def test_assignment_driver_unimplemented(self):
+ interface = assignment.Driver()
+ self.assertInterfaceNotImplemented(interface)
+
def test_catalog_driver_unimplemented(self):
interface = catalog.Driver()
self.assertInterfaceNotImplemented(interface)