Rename BulkCreateObjectsViewTestCase to CreateMultipleObjectsViewTestCase

This commit is contained in:
Jeremy Stretch 2020-07-14 11:08:59 -04:00
parent d47ea04ec4
commit 81ed03575d

View File

@ -577,7 +577,7 @@ class ViewTestCases:
self.assertIn(instance1.get_absolute_url(), content) self.assertIn(instance1.get_absolute_url(), content)
self.assertNotIn(instance2.get_absolute_url(), content) self.assertNotIn(instance2.get_absolute_url(), content)
class BulkCreateObjectsViewTestCase(ModelViewTestCase): class CreateMultipleObjectsViewTestCase(ModelViewTestCase):
""" """
Create multiple instances using a single form. Expects the creation of three new instances by default. Create multiple instances using a single form. Expects the creation of three new instances by default.
@ -588,7 +588,7 @@ class ViewTestCases:
bulk_create_data = {} bulk_create_data = {}
@override_settings(EXEMPT_VIEW_PERMISSIONS=[]) @override_settings(EXEMPT_VIEW_PERMISSIONS=[])
def test_bulk_create_objects_without_permission(self): def test_create_multiple_objects_without_permission(self):
request = { request = {
'path': self._get_url('add'), 'path': self._get_url('add'),
'data': post_data(self.bulk_create_data), 'data': post_data(self.bulk_create_data),
@ -599,7 +599,7 @@ class ViewTestCases:
self.assertHttpStatus(self.client.post(**request), 403) self.assertHttpStatus(self.client.post(**request), 403)
@override_settings(EXEMPT_VIEW_PERMISSIONS=[]) @override_settings(EXEMPT_VIEW_PERMISSIONS=[])
def test_bulk_create_objects_with_permission(self): def test_create_multiple_objects_with_permission(self):
initial_count = self._get_queryset().count() initial_count = self._get_queryset().count()
request = { request = {
'path': self._get_url('add'), 'path': self._get_url('add'),
@ -622,7 +622,7 @@ class ViewTestCases:
self.assertInstanceEqual(instance, self.bulk_create_data) self.assertInstanceEqual(instance, self.bulk_create_data)
@override_settings(EXEMPT_VIEW_PERMISSIONS=[]) @override_settings(EXEMPT_VIEW_PERMISSIONS=[])
def test_bulk_create_objects_with_constrained_permission(self): def test_create_multiple_objects_with_constrained_permission(self):
initial_count = self._get_queryset().count() initial_count = self._get_queryset().count()
request = { request = {
'path': self._get_url('add'), 'path': self._get_url('add'),
@ -919,7 +919,7 @@ class ViewTestCases:
class DeviceComponentTemplateViewTestCase( class DeviceComponentTemplateViewTestCase(
EditObjectViewTestCase, EditObjectViewTestCase,
DeleteObjectViewTestCase, DeleteObjectViewTestCase,
BulkCreateObjectsViewTestCase, CreateMultipleObjectsViewTestCase,
BulkEditObjectsViewTestCase, BulkEditObjectsViewTestCase,
BulkDeleteObjectsViewTestCase, BulkDeleteObjectsViewTestCase,
): ):
@ -934,7 +934,7 @@ class ViewTestCases:
EditObjectViewTestCase, EditObjectViewTestCase,
DeleteObjectViewTestCase, DeleteObjectViewTestCase,
ListObjectsViewTestCase, ListObjectsViewTestCase,
BulkCreateObjectsViewTestCase, CreateMultipleObjectsViewTestCase,
BulkImportObjectsViewTestCase, BulkImportObjectsViewTestCase,
BulkEditObjectsViewTestCase, BulkEditObjectsViewTestCase,
BulkDeleteObjectsViewTestCase, BulkDeleteObjectsViewTestCase,