summaryrefslogtreecommitdiff
path: root/tests/modeltests/test_client
diff options
context:
space:
mode:
authorGary Wilson Jr <gary.wilson@gmail.com>2008-08-12 14:15:38 +0000
committerGary Wilson Jr <gary.wilson@gmail.com>2008-08-12 14:15:38 +0000
commit1697f4e49f782f6d793911ba7d24da6e0dac485e (patch)
tree11d0e2e898cdb1cde73f59deb24ef95a8169ef04 /tests/modeltests/test_client
parentc4d07d4d5026316c7ff46edd894e585e7406e1a9 (diff)
Fixed a couple typos in the modeltests' descriptions and made use of ReST inline literal markup for code snippets.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8325 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/modeltests/test_client')
-rw-r--r--tests/modeltests/test_client/models.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/modeltests/test_client/models.py b/tests/modeltests/test_client/models.py
index 3797bf2d52..2cca618b4e 100644
--- a/tests/modeltests/test_client/models.py
+++ b/tests/modeltests/test_client/models.py
@@ -11,10 +11,10 @@ The server Response objects are annotated with the details
of the contexts and templates that were rendered during the
process of serving the request.
-Client objects are stateful - they will retain cookie (and
-thus session) details for the lifetime of the Client instance.
+``Client`` objects are stateful - they will retain cookie (and
+thus session) details for the lifetime of the ``Client`` instance.
-This is not intended as a replacement for Twill,Selenium, or
+This is not intended as a replacement for Twill, Selenium, or
other browser automation frameworks - it is here to allow
testing against the contexts and templates produced by a view,
rather than the HTML rendered to the end-user.