mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Added a test for Client.generic() data coercion.
The smart_str() call (now force_bytes()) added in
e73838b6dd
is otherwise untested.
This commit is contained in:
parent
b8a41a2872
commit
a6fb81750a
2 changed files with 11 additions and 1 deletions
|
@ -117,6 +117,13 @@ class ClientTest(TestCase):
|
|||
self.assertTrue(mock_encoder.called)
|
||||
self.assertTrue(mock_encoding.encode.called)
|
||||
|
||||
def test_put(self):
|
||||
response = self.client.put('/put_view/', {'foo': 'bar'})
|
||||
self.assertEqual(response.status_code, 200)
|
||||
self.assertEqual(response.templates[0].name, 'PUT Template')
|
||||
self.assertEqual(response.context['data'], "{'foo': 'bar'}")
|
||||
self.assertEqual(response.context['Content-Length'], 14)
|
||||
|
||||
def test_trace(self):
|
||||
"""TRACE a view"""
|
||||
response = self.client.trace('/trace_view/')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue