Fixed #25699 -- Allowed using the test client if 'django.contrib.sessions' isn't in INSTALLED_APPS.

This commit is contained in:
Sergey Kolosov 2016-04-02 16:11:47 +02:00 committed by Tim Graham
parent 5faf745999
commit 21dd98a386
3 changed files with 36 additions and 15 deletions

View file

@ -417,6 +417,9 @@ Tests
* Added the :setting:`DATABASES['TEST']['MIGRATE'] <TEST_MIGRATE>` option to
allow disabling of migrations during test database creation.
* You can now login and use sessions with the test client even if
:mod:`django.contrib.sessions` is not in :setting:`INSTALLED_APPS`.
URLs
~~~~