summaryrefslogtreecommitdiff
path: root/docs/narr/unittesting.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-12-29 05:09:56 +0000
committerChris McDonough <chrism@agendaless.com>2009-12-29 05:09:56 +0000
commit27477816ba22b1f1edead0c4ec6efe5459b33e94 (patch)
treec7429964ae08090b0e93a6ac5e32de596e1e3e59 /docs/narr/unittesting.rst
parente6f681fdca19490f9f7bb6274a38d0784ce3daac (diff)
downloadpyramid-27477816ba22b1f1edead0c4ec6efe5459b33e94.tar.gz
pyramid-27477816ba22b1f1edead0c4ec6efe5459b33e94.tar.bz2
pyramid-27477816ba22b1f1edead0c4ec6efe5459b33e94.zip
Overlong lines.
Fix table.
Diffstat (limited to 'docs/narr/unittesting.rst')
-rw-r--r--docs/narr/unittesting.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/narr/unittesting.rst b/docs/narr/unittesting.rst
index d032e3a36..112536100 100644
--- a/docs/narr/unittesting.rst
+++ b/docs/narr/unittesting.rst
@@ -231,7 +231,8 @@ used the testing API.
def test_view_fn_submitted(self):
from my.package import view_fn
- renderer = self.config.testing_add_template('templates/submitted.pt')
+ renderer = self.config.testing_add_template(
+ 'templates/submitted.pt')
request = testing.DummyRequest()
request.params['say'] = 'Yo'
response = view_fn(request)