summaryrefslogtreecommitdiff
path: root/django/contrib/auth/tests/test_models.py
AgeCommit message (Collapse)Author
2015-02-11Moved contrib.auth tests out of contrib.Tim Graham
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-01-16Fixed #24099 -- Removed contenttype.name deprecated fieldClaude Paroz
This finsishes the work started on #16803. Thanks Simon Charette, Tim Graham and Collin Anderson for the reviews.
2014-08-01Fixed #7220 -- Allowed AbstractBaseUser.last_login to be null.Tim Graham
Thanks veena for the suggestion and Simon Charette and Kévin Etienne for reviews.
2014-07-31Fixed #22956 -- Made PermissionManager.get_by_natural_key() use the correct ↵Jürno Ader
database for content type lookup.
2013-12-23Imported override_settings from its new location.Aymeric Augustin
2013-12-14Fixed E127 pep8 warnings.Loic Bistuer
2013-11-02Fixed #21302 -- Fixed unused imports and import *.Tim Graham
2013-10-14Imported custom user classes in tests depending on itClaude Paroz
Without those imports, affected test files cannot be run independently. Refs #21164.
2013-08-14Fixed #11400 -- Passed kwargs from AbstractUser.email_user() to send_mail()SusanTan
Thanks Jug_ for suggestion, john_scott for the initial patch, and Tim Graham for code review.
2013-06-29More import removalsClaude Paroz
Following the series of commits removing deprecated features in Django 1.7, here are some more unneeded imports removed and other minor cleanups.
2013-06-28Removed custom profile model functionality as per deprecation TL.Ramiro Morales
2013-06-27Fixed #20541 -- don't raise db signals twice when creating superuserAnton Baklanov
2013-06-18Fixed #20079 -- Improve security of password reset tokensErik Romijn
2013-04-02Modified auth to work with unittest2 discovery.Preston Timmons