summaryrefslogtreecommitdiff
path: root/passlib/tests/handler_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'passlib/tests/handler_utils.py')
-rw-r--r--passlib/tests/handler_utils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/passlib/tests/handler_utils.py b/passlib/tests/handler_utils.py
index 988eddd..5756d71 100644
--- a/passlib/tests/handler_utils.py
+++ b/passlib/tests/handler_utils.py
@@ -8,7 +8,7 @@ import re
from nose.plugins.skip import SkipTest
#pkg
from passlib.tests.utils import TestCase, enable_option
-from passlib.utils.handlers import BaseHandler, PlainHandler, BackendMixin
+from passlib.utils.handlers import ExtHandler, BackendMixin
#module
__all__ = [
"_HandlerTestCase",
@@ -122,9 +122,9 @@ class _HandlerTestCase(TestCase):
self.assert_(re.match("^[a-z0-9_]+$", name), "name must be alphanum + underscore: %r" % (name,))
def test_01_base_handler(self):
- "run BaseHandler validation tests"
+ "run ExtHandler validation tests"
h = self.handler
- if not isinstance(h, type) or not issubclass(h, (BaseHandler, PlainHandler)):
+ if not isinstance(h, type) or not issubclass(h, ExtHandler):
raise SkipTest
h.validate_class() #should raise AssertionError if something's wrong.