Skip to content

Commit 7bbd02b

Browse files
committed
Removed inadvertently duplicated test functions.
1 parent 1030730 commit 7bbd02b

File tree

1 file changed

+0
-29
lines changed

1 file changed

+0
-29
lines changed

tests/test_mig_shared_vgridaccess.py

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -761,35 +761,6 @@ def test_unmap_resource(self):
761761
# mod_list, mod_stamp = check_resources_modified(self.configuration)
762762
# self.assertIn(self.TEST_RESOURCE_ID, mod_list)
763763

764-
def test_check_vgrids_modified_initial(self):
765-
"""Verify initial state of modified vgrids list is empty"""
766-
modified, stamp = check_vgrids_modified(self.configuration)
767-
self.assertEqual(modified, ['ALL'])
768-
reset_vgrids_modified(self.configuration)
769-
modified, stamp = check_vgrids_modified(self.configuration)
770-
self.assertEqual(modified, [])
771-
772-
def test_resources_using_re_notfound(self):
773-
"""Test RE with no assigned resources returns empty list"""
774-
# Nonexistent RE should have no resources
775-
res_list = resources_using_re(self.configuration, 'NoSuchRE')
776-
self.assertEqual(res_list, [])
777-
778-
def test_vgrid_inherit_map_single(self):
779-
"""Test inheritance mapping with single vgrid"""
780-
test_settings = [('vgrid_name', self.test_vgrid),
781-
('description', 'Test description')]
782-
test_map = {
783-
VGRIDS: {
784-
self.test_vgrid: {
785-
SETTINGS: test_settings
786-
}
787-
}
788-
}
789-
inherited_map = vgrid_inherit_map(self.configuration, test_map)
790-
settings_dict = dict(inherited_map[VGRIDS][self.test_vgrid][SETTINGS])
791-
self.assertEqual(settings_dict['description'], 'Test description')
792-
793764
def test_access_nonexistent_vgrid(self):
794765
"""Ensure checks fail cleanly for non-existent vgrid"""
795766
allowed = check_vgrid_access(self.configuration, self.TEST_MEMBER_DN,

0 commit comments

Comments
 (0)