summaryrefslogtreecommitdiff
path: root/django/contrib/auth/tests/test_basic.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
2014-09-18Fixed #23488 -- Added AnonymousUser.get_username().Damien Baty
2014-02-18flake8 fixes (unused imports and variables).Tim Graham
2014-02-18Consolidated all tests for createsuperuser in the same TestCase.Baptiste Mispelon
2013-12-29Added Apps.clear_cache().Aymeric Augustin
This avoid leaking implementation details to tests that swap models.
2013-12-29Cleared get_models cache when swapping User model.Aymeric Augustin
Thanks Florian for isolating the shortest way to reproduce this issue: ./runtests.py \ django.contrib.auth.tests.test_context_processors.AuthContextProcessorTests.test_perms_attrs \ django.contrib.auth.tests.test_auth_backends.ChangedBackendSettingsTest.test_changed_backend_settings \ django.contrib.auth.tests.test_auth_backends.CustomUserModelBackendAuthenticateTest.test_authenticate \ django.contrib.auth.tests.test_basic.BasicTestCase.test_createsuperuser_management_command
2013-12-23Imported override_settings from its new location.Aymeric Augustin
2013-12-10Fixed E124 pep8 warnings.Loic Bistuer
2013-10-10Fixed "redefinition of unused 'foo' from line X" pyflakes warnings.Tim Graham
2013-10-08Fixed #21164 -- Added documentation for issue with test users.Russell Keith-Magee
The package renaming restores the older package names (which were also the documented package names). This doesn't affect test discovery because the module in question doesn't contain any tests. Thanks to Carl for the design discussion.
2013-09-02Replaced "not PY3" by "PY2", new in six 1.4.0.Aymeric Augustin
2013-04-02Modified auth to work with unittest2 discovery.Preston Timmons