예제 #1
0
파일: test_ilo.py 프로젝트: morinap/salt-1
 def test_delete_ssh_key(self):
     '''
     Test if it delete a users SSH key from the ILO
     '''
     with patch('salt.modules.ilo.__execute_cmd',
                MagicMock(return_value={'Delete user SSH key': {}})):
         self.assertDictEqual(ilo.delete_ssh_key('Salt'),
                              {'Delete user SSH key': {}})
예제 #2
0
 def test_delete_ssh_key(self):
     """
     Test if it delete a users SSH key from the ILO
     """
     with patch(
             "salt.modules.ilo.__execute_cmd",
             MagicMock(return_value={"Delete user SSH key": {}}),
     ):
         self.assertDictEqual(ilo.delete_ssh_key("Salt"),
                              {"Delete user SSH key": {}})
예제 #3
0
파일: test_ilo.py 프로젝트: cldeluna/salt
 def test_delete_ssh_key(self):
     '''
     Test if it delete a users SSH key from the ILO
     '''
     self.assertDictEqual(ilo.delete_ssh_key('Salt'),
                          {'Delete user SSH key': {}})
예제 #4
0
파일: ilo_test.py 프로젝트: DaveQB/salt
 def test_delete_ssh_key(self):
     '''
     Test if it delete a users SSH key from the ILO
     '''
     self.assertDictEqual(ilo.delete_ssh_key('Salt'),
                          {'Delete user SSH key': {}})