summaryrefslogtreecommitdiff
path: root/tests/test_client_regress/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_client_regress/tests.py')
-rw-r--r--tests/test_client_regress/tests.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/test_client_regress/tests.py b/tests/test_client_regress/tests.py
index 7a633ee7a3..2c1a9b346a 100644
--- a/tests/test_client_regress/tests.py
+++ b/tests/test_client_regress/tests.py
@@ -1209,6 +1209,12 @@ class RequestMethodStringDataTests(SimpleTestCase):
response = self.client.get('/json_response/')
self.assertEqual(response.json(), {'key': 'value'})
+ def test_json_vendor(self):
+ for content_type in ('application/vnd.api+json', 'application/vnd.api.foo+json'):
+ response = self.client.get('/json_response/', {'content_type': content_type})
+ self.assertEqual(response['Content-Type'], content_type)
+ self.assertEqual(response.json(), {'key': 'value'})
+
def test_json_multiple_access(self):
response = self.client.get('/json_response/')
self.assertIs(response.json(), response.json())