Browse Source

changed tox config to use Django<1.8 for DRF<3 [ci skip]

Miroslav Shubernetskiy 10 years ago
parent
commit
e87d53a3f5
2 changed files with 34 additions and 0 deletions
  1. 18 0
      rest_framework_bulk/tests/test_generics.py
  2. 16 0
      tox.ini

+ 18 - 0
rest_framework_bulk/tests/test_generics.py

@@ -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.

+ 16 - 0
tox.ini

@@ -20,5 +20,21 @@ deps =
 whitelist_externals =
     make
 
+[testenv:py27-drf2]
+deps =
+    django<1.8
+
+[testenv:py34-drf2]
+deps =
+    django<1.8
+
+[testenv:pypy-drf2]
+deps =
+    django<1.8
+
+[testenv:pypy3-drf2]
+deps =
+    django<1.8
+
 [flake8]
 max-line-length = 100