diff options
| author | Eli Collins <elic@assurancetechnologies.com> | 2011-03-22 19:27:06 -0400 |
|---|---|---|
| committer | Eli Collins <elic@assurancetechnologies.com> | 2011-03-22 19:27:06 -0400 |
| commit | de2622bd4f6477983d09a001000f0e30856065d3 (patch) | |
| tree | 3673ea80500b748e222fd15ccaed1804a736641e /passlib/tests/utils.py | |
| parent | cce3a27b515c15410512bc7fbf7ddd6b2ff2af44 (diff) | |
| download | passlib-de2622bd4f6477983d09a001000f0e30856065d3.tar.gz | |
big rename: driver->handler
===========================
Renamed all references from password hash "driver" -> password hash "handler", to be more consistent with existing phrasing.
This also required rearranging quite a lot of modules.
Diffstat (limited to 'passlib/tests/utils.py')
| -rw-r--r-- | passlib/tests/utils.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/passlib/tests/utils.py b/passlib/tests/utils.py index 940a39f..6b4bd0e 100644 --- a/passlib/tests/utils.py +++ b/passlib/tests/utils.py @@ -25,7 +25,7 @@ except ImportError: from nose.plugins.skip import SkipTest #pkg from passlib.utils import classproperty -from passlib.utils.drivers import BaseHash, ExtHash, BackendExtHash +from passlib.utils.handlers import BaseHash, ExtHash, BackendExtHash #local __all__ = [ #util funcs @@ -203,11 +203,11 @@ class TestCase(unittest.TestCase): #other unittest helpers #========================================================= class HandlerCase(TestCase): - """base class for testing password hash drivers (esp passlib.utils.drivers.BaseHash subclasses) + """base class for testing password hash handlers (esp passlib.utils.handlers.BaseHash subclasses) .. todo:: write directions on how to use this class. - for now, see examples in test_drivers + for now, see examples in test_handlers """ #========================================================= #attrs to be filled in by subclass for testing specific handler |
