mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix some lint errors
This commit is contained in:
parent
1f44d8d5e6
commit
609361bf48
1 changed files with 1 additions and 13 deletions
|
@ -78,8 +78,6 @@ class WinGroupTestCase(TestCase, LoaderModuleMockMixin):
|
|||
win_groupadd: {'__opts__': {'test': False}}
|
||||
}
|
||||
|
||||
# 'add' function tests: 1
|
||||
|
||||
def test_add(self):
|
||||
'''
|
||||
Test adding a new group
|
||||
|
@ -126,8 +124,6 @@ class WinGroupTestCase(TestCase, LoaderModuleMockMixin):
|
|||
'result': False,
|
||||
'comment': 'Failed to create group foo. C'})
|
||||
|
||||
# 'delete' function tests: 1
|
||||
|
||||
def test_delete(self):
|
||||
'''
|
||||
Test removing a group
|
||||
|
@ -179,9 +175,6 @@ class WinGroupTestCase(TestCase, LoaderModuleMockMixin):
|
|||
'result': False,
|
||||
'comment': 'Failed to remove group foo. C'})
|
||||
|
||||
|
||||
# 'info' function tests: 1
|
||||
|
||||
def test_info(self):
|
||||
'''
|
||||
Test if it return information about a group.
|
||||
|
@ -199,7 +192,7 @@ class WinGroupTestCase(TestCase, LoaderModuleMockMixin):
|
|||
return_value=[
|
||||
MockGroupObj('salt', ['WinNT://HOST/steve']),
|
||||
MockGroupObj('salty', ['WinNT://HOST/spongebob'])])
|
||||
mock_g_to_g = MagicMock(side_effect=[1,2,3,4,5])
|
||||
mock_g_to_g = MagicMock(side_effect=[1, 2])
|
||||
with patch.object(win_groupadd, '_get_all_groups', groupobj_mock),\
|
||||
patch.dict(win_groupadd.__salt__, {'file.group_to_gid': mock_g_to_g}):
|
||||
self.assertListEqual(
|
||||
|
@ -264,7 +257,6 @@ class WinGroupTestCase(TestCase, LoaderModuleMockMixin):
|
|||
'comment': 'Failed to add HOST\\username to group foo. C',
|
||||
'result': False})
|
||||
|
||||
|
||||
def test_adduser_group_does_not_exist(self):
|
||||
groupobj_mock = MagicMock(side_effect=PYWINTYPES_ERROR)
|
||||
with patch.object(win_groupadd, '_get_group_object', groupobj_mock), \
|
||||
|
@ -276,8 +268,6 @@ class WinGroupTestCase(TestCase, LoaderModuleMockMixin):
|
|||
'comment': 'Failure accessing group foo. C',
|
||||
'result': False})
|
||||
|
||||
# 'deluser' function tests: 3
|
||||
|
||||
def test_deluser(self):
|
||||
'''
|
||||
Test removing a user from a group
|
||||
|
@ -335,8 +325,6 @@ class WinGroupTestCase(TestCase, LoaderModuleMockMixin):
|
|||
'comment': 'Failure accessing group foo. C',
|
||||
'result': False})
|
||||
|
||||
# 'members' function tests: 1
|
||||
|
||||
def test_members(self):
|
||||
'''
|
||||
Test adding a list of members to a group, all existing users removed
|
||||
|
|
Loading…
Add table
Reference in a new issue