summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnssi Kääriäinen <akaariai@gmail.com>2013-10-09 14:20:37 +0300
committerAnssi Kääriäinen <akaariai@gmail.com>2013-10-09 14:40:32 +0300
commit9f8a36eb20895d9e542820d5190bfa77ad1b85d9 (patch)
tree3a758392c1a73984f0f7b0dc616104f0421a6572
parentb495c24375aa1fe0373727511cf81298337a1227 (diff)
[1.5.x] Fixed #21248 -- Skipped test_bcrypt if no py-bcrypt found
Pre 1.6 Django worked only with py-bcrypt, not with bcrypt. Skipped test_bcrypt when using bcrypt to avoid false positives.
-rw-r--r--django/contrib/auth/tests/hashers.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/django/contrib/auth/tests/hashers.py b/django/contrib/auth/tests/hashers.py
index 2b2243cb0c..be56fde378 100644
--- a/django/contrib/auth/tests/hashers.py
+++ b/django/contrib/auth/tests/hashers.py
@@ -16,6 +16,10 @@ except ImportError:
try:
import bcrypt
+ # Django 1.5 works only with py-bcrypt, not with bcrypt. py-bcrypt has
+ # '_bcrypt' attribute, bcrypt doesn't.
+ if not hasattr(bcrypt, '_bcrypt'):
+ bcrypt = None
except ImportError:
bcrypt = None