diff options
| author | Georges Dubus <georges.dubus@compiletoi.net> | 2013-02-23 17:16:32 +0100 |
|---|---|---|
| committer | Georges Dubus <georges.dubus@compiletoi.net> | 2013-02-23 17:22:34 +0100 |
| commit | b58cb07681ebfe8b53cfca3854e7445159355488 (patch) | |
| tree | 473c4ea6b9fee9f9a2cdef3234a6115220c9ca12 /tests/test_response.py | |
| parent | dad375114987c9018b62d793ac69a5e54426914f (diff) | |
| download | webtest-b58cb07681ebfe8b53cfca3854e7445159355488.tar.gz | |
Reviewed documentation for `TestResponse`.
Diffstat (limited to 'tests/test_response.py')
| -rw-r--r-- | tests/test_response.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_response.py b/tests/test_response.py index 0467af0..6d9d29a 100644 --- a/tests/test_response.py +++ b/tests/test_response.py @@ -147,6 +147,7 @@ class TestResponse(unittest.TestCase): res.mustcontain('foobar') self.assertRaises(IndexError, res.mustcontain, 'not found') res.mustcontain('foobar', no='not found') + res.mustcontain('foobar', no=['not found', 'not found either']) self.assertRaises(IndexError, res.mustcontain, no='foobar') self.assertRaises( TypeError, |
