aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/tests/request.py
diff options
context:
space:
mode:
authorTom Christie2013-03-15 19:25:12 +0000
committerTom Christie2013-03-15 19:25:12 +0000
commit1aedf57f4a1eb7261162977944fe233b00d63b59 (patch)
treeb091b5e765c5cbe03449961643b6887e5acb9b24 /rest_framework/tests/request.py
parentb6b686d285e376dbf4f2d2f15bd0e3ef0f1c3a37 (diff)
parent22a389d0ba4dd5ac7b4fa3839491ec2708bbe7df (diff)
downloaddjango-rest-framework-1aedf57f4a1eb7261162977944fe233b00d63b59.tar.bz2
Merge branch 'master' into basic-nested-serialization
Diffstat (limited to 'rest_framework/tests/request.py')
-rw-r--r--rest_framework/tests/request.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/rest_framework/tests/request.py b/rest_framework/tests/request.py
index 4892f7a6..97e5af20 100644
--- a/rest_framework/tests/request.py
+++ b/rest_framework/tests/request.py
@@ -58,6 +58,14 @@ class TestMethodOverloading(TestCase):
request = Request(factory.post('/', {api_settings.FORM_METHOD_OVERRIDE: 'DELETE'}))
self.assertEqual(request.method, 'DELETE')
+ def test_x_http_method_override_header(self):
+ """
+ POST requests can also be overloaded to another method by setting
+ the X-HTTP-Method-Override header.
+ """
+ request = Request(factory.post('/', {'foo': 'bar'}, HTTP_X_HTTP_METHOD_OVERRIDE='DELETE'))
+ self.assertEqual(request.method, 'DELETE')
+
class TestContentParsing(TestCase):
def test_standard_behaviour_determines_no_content_GET(self):