summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-06-16 12:46:23 -0400
committerTim Graham <timograham@gmail.com>2015-06-16 12:46:23 -0400
commitfbc618c13cc72b9c2f4c8dfd5ef8b8ab5a5d7caa (patch)
treebcb3262cbf649b83cd5097cdabfc79515b10db85 /docs
parent09f2cdbe1a43e79e31f5ea509b59d4c87db29832 (diff)
Refs #24987 -- Documented that Client.login() rejects inactive users.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/testing/tools.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt
index 7aaeff97af..2ebe98eda4 100644
--- a/docs/topics/testing/tools.txt
+++ b/docs/topics/testing/tools.txt
@@ -340,6 +340,13 @@ Use the ``django.test.Client`` class to make requests.
``login()`` method to simulate the effect of a user logging into the
site.
+ Inactive users (:attr:`is_active=False
+ <django.contrib.auth.models.User.is_active>`) are not permitted to
+ login as this method is meant to be equivalent to the
+ :func:`~django.contrib.auth.login` view which uses
+ :class:`~django.contrib.auth.forms.AuthenticationForm` and therefore
+ defaults to rejecting users who are inactive.
+
After you call this method, the test client will have all the cookies
and session data required to pass any login-based tests that may form
part of a view.