summaryrefslogtreecommitdiff
path: root/tests/test_client/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_client/views.py')
-rw-r--r--tests/test_client/views.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/test_client/views.py b/tests/test_client/views.py
index 692581e892..fa2bac2943 100644
--- a/tests/test_client/views.py
+++ b/tests/test_client/views.py
@@ -85,6 +85,21 @@ def post_view(request):
return HttpResponse(t.render(c))
+def post_then_get_view(request):
+ """
+ A view that expects a POST request, returns a redirect response
+ to itself providing only a ?success=true querystring,
+ the value of this querystring is then rendered upon GET.
+ """
+ if request.method == 'POST':
+ return HttpResponseRedirect('?success=true')
+
+ t = Template('The value of success is {{ value }}.', name='GET Template')
+ c = Context({'value': request.GET.get('success', 'false')})
+
+ return HttpResponse(t.render(c))
+
+
def json_view(request):
"""
A view that expects a request with the header 'application/json' and JSON