summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2013-03-02 16:57:08 +0100
committerDomen Kožar <domen@dev.si>2013-03-02 16:57:08 +0100
commita853118ef0ced583334451c9b544f769e9b74c1a (patch)
tree9858415d58b23f9f2a2d2199c3db4f8fd6a609a5
parent73d9777fce6c6f579f3b28660b72d31182dcebff (diff)
downloadwebtest-a853118ef0ced583334451c9b544f769e9b74c1a.tar.gz
improve TestResponse api docs a bit
-rw-r--r--webtest/response.py15
1 files changed, 8 insertions, 7 deletions
diff --git a/webtest/response.py b/webtest/response.py
index 88e2fcc..6f2accb 100644
--- a/webtest/response.py
+++ b/webtest/response.py
@@ -22,7 +22,8 @@ import webob
class TestResponse(webob.Response):
"""
- Instances of this class are returned by :class:`~webtest.TestApp`
+ Instances of this class are returned by
+ :class:`~webtest.TestApp` methods.
"""
request = None
@@ -31,8 +32,8 @@ class TestResponse(webob.Response):
@property
def forms(self):
"""
- Returns a dictionnary containing all the forms in the pages as
- :class:`~webtest.forms.Form` objects. Indexes are both in
+ Returns a dictionary containing all the forms in the pages as
+ :class:`~webtest.forms.Form` objects. Indexes are both in
order (from zero) and by form id (if the form is given an id).
See :doc:`forms` for more info on form objects.
@@ -80,10 +81,10 @@ class TestResponse(webob.Response):
def follow(self, **kw):
"""
- If this request is a redirect, follow that redirect. It is an
- error if this is not a redirect response. Any keyword
- arguments are passed to :class:`webtest.TestApp`. Returns
- another response object.
+ If this response is a redirect, follow that redirect. It is an
+ error if it is not a redirect response. Any keyword
+ arguments are passed to :class:`webtest.TestApp.get`. Returns
+ another :class:`TestResponse` object.
"""
assert self.status_int >= 300 and self.status_int < 400, (
"You can only follow redirect responses (not %s)"