mirror of
https://github.com/django/django.git
synced 2025-08-03 02:23:12 +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
|
@ -53,7 +53,10 @@ def trace_view(request):
|
|||
def put_view(request):
|
||||
if request.method == 'PUT':
|
||||
t = Template('Data received: {{ data }} is the body.', name='PUT Template')
|
||||
c = Context({'data': request.body.decode()})
|
||||
c = Context({
|
||||
'Content-Length': request.META['CONTENT_LENGTH'],
|
||||
'data': request.body.decode(),
|
||||
})
|
||||
else:
|
||||
t = Template('Viewing GET page.', name='Empty GET Template')
|
||||
c = Context()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue