|
@@ -1,5 +1,7 @@
|
|
|
from __future__ import unicode_literals, print_function
|
|
|
import json
|
|
|
+import unittest
|
|
|
+
|
|
|
from django.core.urlresolvers import reverse
|
|
|
from django.test import TestCase
|
|
|
from django.test.client import RequestFactory
|
|
@@ -83,6 +85,22 @@ class TestBulkAPIView(TestCase):
|
|
|
]
|
|
|
)
|
|
|
|
|
|
+ @unittest.skip('')
|
|
|
+ def test_put_without_update_key(self):
|
|
|
+ """
|
|
|
+ Test that PUT request updates all submitted resources.
|
|
|
+ """
|
|
|
+ response = self.view(self.request.put(
|
|
|
+ '',
|
|
|
+ json.dumps([
|
|
|
+ {'contents': 'foo', 'number': 3},
|
|
|
+ {'contents': 'bar', 'number': 4, 'id': 555}, # non-existing id
|
|
|
+ ]),
|
|
|
+ content_type='application/json',
|
|
|
+ ))
|
|
|
+
|
|
|
+ self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
|
|
+
|
|
|
def test_patch(self):
|
|
|
"""
|
|
|
Test that PATCH request partially updates all submitted resources.
|