Add test for clone item. Also change password hashing for faster tests.

This commit is contained in:
Jay Zoldak
2012-11-09 10:54:50 -05:00
parent 14564b2310
commit 7efaa87c19
2 changed files with 56 additions and 22 deletions

View File

@@ -99,3 +99,10 @@ CACHES = {
'KEY_FUNCTION': 'util.memcache.safe_key',
}
}
################### Make tests faster
#http://slacy.com/blog/2012/04/make-your-tests-faster-in-django-1-4/
PASSWORD_HASHERS = (
'django.contrib.auth.hashers.SHA1PasswordHasher',
'django.contrib.auth.hashers.MD5PasswordHasher',
)