summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-09-14 01:21:34 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-09-14 01:21:34 +0000
commit1e94ef85bf3ea6f0195314ed0d7f2fb051c33ef3 (patch)
tree3d9f4facabfcecd2e274b521002272c659a60901 /docs
parent87e77ffca0a7df59ff9407ef30a2baa90f1d872d (diff)
Fixed #4360 -- Corrected where HTTP headers are in the test response. Also noted that it is an extension of HttpResponse, not a simpler object. Thanks, John Shaffer for the first part.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6147 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/testing.txt8
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/testing.txt b/docs/testing.txt
index 22a7e48a7a..e15abd50d5 100644
--- a/docs/testing.txt
+++ b/docs/testing.txt
@@ -569,8 +569,8 @@ Testing responses
The ``get()`` and ``post()`` methods both return a ``Response`` object. This
``Response`` object is *not* the same as the ``HttpResponse`` object returned
-Django views; this object is simpler and has some additional data useful for
-tests.
+Django views; the test response object has some additional data useful for
+test code to verify.
Specifically, a ``Response`` object has the following attributes:
@@ -582,7 +582,7 @@ Specifically, a ``Response`` object has the following attributes:
``content`` The body of the response, as a string. This is the final
page content as rendered by the view, or any error
- message (such as the URL for a 302 redirect).
+ message.
``context`` The template ``Context`` instance that was used to render
the template that produced the response content.
@@ -591,6 +591,8 @@ Specifically, a ``Response`` object has the following attributes:
``context`` will be a list of ``Context``
objects, in the order in which they were rendered.
+ ``headers`` The HTTP headers of the response. This is a dictionary.
+
``request`` The request data that stimulated the response.
``status_code`` The HTTP status of the response, as an integer. See