From ee2f04d79e5bca55637b9bb3301618738a4e342a Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Wed, 18 Mar 2009 10:46:55 +0000 Subject: Fixed #10482 -- Unified access to response.context when inspecting responses from the test client. Thanks to James Bennett for the design, and Julien Phalip for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10084 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/testing.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'docs') diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt index e1c3c2e06c..974856b0c4 100644 --- a/docs/topics/testing.txt +++ b/docs/topics/testing.txt @@ -712,6 +712,16 @@ Specifically, a ``Response`` object has the following attributes: If the rendered page used multiple templates, then ``context`` will be a list of ``Context`` objects, in the order in which they were rendered. + .. versionadded:: 1.1 + + Regardless of the number of templates used during rendering, you can + retrieve context values using the ``[]`` operator. For example, the + context variable ``name`` could be retrieved using:: + + >>> response = client.get('/foo/') + >>> response.context['name'] + 'Arthur' + .. attribute:: request The request data that stimulated the response. -- cgit v1.3