summaryrefslogtreecommitdiff
path: root/docs/testing.txt
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-07-01 05:55:01 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-07-01 05:55:01 +0000
commita61d4ebd5f4b49b296063eae603faa3c456d26e5 (patch)
tree3b88cfd1865e4a77400ec2becddaf93851f27f57 /docs/testing.txt
parentb89d409bf7ed7f9d6248c1ec188e241bdf5d4aa2 (diff)
unicode: Merged changes from trunk up to [5579].
git-svn-id: http://code.djangoproject.com/svn/django/branches/unicode@5580 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/testing.txt')
-rw-r--r--docs/testing.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/testing.txt b/docs/testing.txt
index 50c4ec3046..b326e0099d 100644
--- a/docs/testing.txt
+++ b/docs/testing.txt
@@ -253,8 +253,8 @@ can be invoked on the ``Client`` instance.
f.close()
will result in the evaluation of a POST request on ``/customers/wishes/``,
- with a POST dictionary that contains `name`, `attachment` (containing the
- file name), and `attachment_file` (containing the file data). Note that you
+ with a POST dictionary that contains ``name``, ``attachment`` (containing the
+ file name), and ``attachment_file`` (containing the file data). Note that you
need to manually close the file after it has been provided to the POST.
``login(**credentials)``
@@ -660,8 +660,8 @@ arguments:
tested. This is the same format returned by ``django.db.models.get_apps()``
Verbosity determines the amount of notification and debug information that
- will be printed to the console; `0` is no output, `1` is normal output,
- and `2` is verbose output.
+ will be printed to the console; ``0`` is no output, ``1`` is normal output,
+ and ``2`` is verbose output.
This method should return the number of tests that failed.