summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-10-20 10:51:25 -0400
committerTim Graham <timograham@gmail.com>2014-10-20 10:51:25 -0400
commita39df37049c6b708924eed1521963929e0694b0c (patch)
tree904695eb64eb32520ab8d8a6b36dd668d95eb1ed /docs
parent968510e5d709ca83933fbff733a19437e469c10a (diff)
Fixed #20609 -- Added instructions for using AnonymousUser with RequestFactory.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/testing/advanced.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/topics/testing/advanced.txt b/docs/topics/testing/advanced.txt
index cf50351a74..a0b84c2bf3 100644
--- a/docs/topics/testing/advanced.txt
+++ b/docs/topics/testing/advanced.txt
@@ -37,7 +37,7 @@ Example
The following is a simple unit test using the request factory::
- from django.contrib.auth.models import User
+ from django.contrib.auth.models import AnonymousUser, User
from django.test import TestCase, RequestFactory
class SimpleTest(TestCase):
@@ -55,6 +55,10 @@ The following is a simple unit test using the request factory::
# logged-in user by setting request.user manually.
request.user = self.user
+ # Or you can simulate an anonymous user by setting request.user to
+ # an AnonymousUser instance.
+ request.user = AnonymousUser()
+
# Test my_view() as if it were deployed at /customer/details
response = my_view(request)
self.assertEqual(response.status_code, 200)