summaryrefslogtreecommitdiff
path: root/tests/test_debugapp.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_debugapp.py')
-rw-r--r--tests/test_debugapp.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/test_debugapp.py b/tests/test_debugapp.py
index 5793a81..2375f8c 100644
--- a/tests/test_debugapp.py
+++ b/tests/test_debugapp.py
@@ -45,12 +45,14 @@ class TestTesting(unittest.TestCase):
self.assertEqual(res.body, to_bytes(''))
def test_post_unicode(self):
- res = self.app.post('/', params=dict(a='é'),
+ res = self.app.post(
+ '/', params=dict(a='é'),
content_type='application/x-www-form-urlencoded;charset=utf8')
res.mustcontain('a=%C3%A9')
def test_post_unicode_body(self):
- res = self.app.post('/', params='é',
+ res = self.app.post(
+ '/', params='é',
content_type='text/plain; charset=utf8')
self.assertTrue(res.body.endswith(b'\xc3\xa9'))
res.mustcontain('é')
@@ -86,7 +88,7 @@ class TestTesting(unittest.TestCase):
def test_exception(self):
self.assertRaises(Exception, self.app.get, '/?error=t')
self.assertRaises(webtest.AppError, self.app.get,
- '/?status=404%20Not%20Found')
+ '/?status=404%20Not%20Found')
def test_bad_content_type(self):
resp = self.app.get('/')
@@ -102,7 +104,6 @@ class TestTesting(unittest.TestCase):
resp = app.get('/')
self.assertEqual(resp.status_int, 200)
-
def test_errors(self):
try:
self.app.get('/?errorlog=somelogs')