mirror of
https://github.com/django/django.git
synced 2025-03-24 00:00:45 +00:00
Refs #20530 -- Added a test for test client query string encoding.
7bb627936034c1b9500a8d250cce75b30f980b23 is only tested in django-contrib-comments.
This commit is contained in:
parent
43b148f41f
commit
4206765a5b
@ -54,6 +54,11 @@ class ClientTest(TestCase):
|
||||
self.assertEqual(response.context['var'], '\xf2')
|
||||
self.assertEqual(response.templates[0].name, 'GET Template')
|
||||
|
||||
def test_query_string_encoding(self):
|
||||
# WSGI requires latin-1 encoded strings.
|
||||
response = self.client.get('/get_view/?var=1\ufffd')
|
||||
self.assertEqual(response.context['var'], '1\ufffd')
|
||||
|
||||
def test_get_post_view(self):
|
||||
"GET a view that normally expects POSTs"
|
||||
response = self.client.get('/post_view/', {})
|
||||
|
Loading…
x
Reference in New Issue
Block a user