summaryrefslogtreecommitdiff
path: root/tests/test_debugapp.py
diff options
context:
space:
mode:
authorStéphane Klein <sklein@bearstech.com>2013-02-22 17:13:35 +0100
committerStéphane Klein <sklein@bearstech.com>2013-02-22 17:14:09 +0100
commit002c42c4847c6dedc92f37229adc6ac998256347 (patch)
tree5b79c868e3c1b8831372fd4e0623c8983b5f6555 /tests/test_debugapp.py
parent8a6361cda4c49aad8f9f67a6c763018415817b93 (diff)
downloadwebtest-002c42c4847c6dedc92f37229adc6ac998256347.tar.gz
Improve webtest.response.TestResponse coverage
Diffstat (limited to 'tests/test_debugapp.py')
-rw-r--r--tests/test_debugapp.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/test_debugapp.py b/tests/test_debugapp.py
index 42f0754..fbe3969 100644
--- a/tests/test_debugapp.py
+++ b/tests/test_debugapp.py
@@ -181,9 +181,3 @@ class TestTesting(unittest.TestCase):
def items(self):
return [('a', '10'), ('a', '20')]
self.app.post('/params', params=FakeDict())
-
- def test_unicode_normal_body(self):
- res = self.app.post('/?status=302', params='foobar')
- res.charset = 'latin1'
- res.body = 'été'.encode('latin1')
- self.assertEqual(res.unicode_normal_body, 'été')