From 20cfeffe6eed34178e0b9469f5c9725f2969aa40 Mon Sep 17 00:00:00 2001 From: Daniel Sheppard Date: Fri, 1 Dec 2023 14:32:10 -0600 Subject: [PATCH] Remove BulkEdit test --- netbox/ipam/tests/test_views.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/netbox/ipam/tests/test_views.py b/netbox/ipam/tests/test_views.py index b500f5afb..2f56b9a42 100644 --- a/netbox/ipam/tests/test_views.py +++ b/netbox/ipam/tests/test_views.py @@ -858,7 +858,16 @@ class VLANTestCase(ViewTestCases.PrimaryObjectViewTestCase): } -class VLANDeviceMappingTestCase(ViewTestCases.PrimaryObjectViewTestCase): +class VLANDeviceMappingTestCase( + ViewTestCases.GetObjectViewTestCase, + ViewTestCases.GetObjectChangelogViewTestCase, + ViewTestCases.CreateObjectViewTestCase, + ViewTestCases.EditObjectViewTestCase, + ViewTestCases.DeleteObjectViewTestCase, + ViewTestCases.ListObjectsViewTestCase, + ViewTestCases.BulkImportObjectsViewTestCase, + ViewTestCases.BulkDeleteObjectsViewTestCase +): model = VLANDeviceMapping @classmethod @@ -917,8 +926,6 @@ class VLANDeviceMappingTestCase(ViewTestCases.PrimaryObjectViewTestCase): f"{vlans[2].pk},VLAN109,New description 9", ) - cls.bulk_edit_data = None - class ServiceTemplateTestCase(ViewTestCases.PrimaryObjectViewTestCase): model = ServiceTemplate