summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-10-07 09:04:55 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-10-07 09:04:55 +0000
commitfb4f82f2eabe29f9fa27612f485b3be8f497c107 (patch)
tree29c7e0b8f0c3da38f3bd0174d1afb604351dfb54 /docs
parented48b0b37ebbb7ec5a8001b7957bb5f9e021e644 (diff)
Reverted r9186 -- Committed to the wrong branch (it's a feature addition).
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9187 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/testing.txt22
1 files changed, 0 insertions, 22 deletions
diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt
index d7cbc272ac..4f37b3bdc0 100644
--- a/docs/topics/testing.txt
+++ b/docs/topics/testing.txt
@@ -544,28 +544,6 @@ arguments at time of construction:
Note that you should manually close the file after it has been provided
to ``post()``.
- .. method:: Client.head(path, data={})
-
- Makes a HEAD request on the provided ``path`` and returns a ``Response``
- object. Useful for testing RESTful interfaces. Acts just like
- :meth:`Client.get` except it does not return a message body.
-
- .. method:: Client.options(path, data={})
-
- Makes an OPTIONS request on the provided ``path`` and returns a
- ``Response`` object. Useful for testing RESTful interfaces.
-
- .. method:: Client.put(path, data={}, content_type=MULTIPART_CONTENT)
-
- Makes an PUT request on the provided ``path`` and returns a
- ``Response`` object. Useful for testing RESTful interfaces. Acts just
- like :meth:`Client.put` except with the PUT request method.
-
- .. method:: Client.delete(path)
-
- Makes an DELETE request on the provided ``path`` and returns a
- ``Response`` object. Useful for testing RESTful interfaces.
-
.. method:: Client.login(**credentials)
.. versionadded:: 1.0