Beispiel #1
0
 def test_stop(self):
     """
     Test to stop the specified service
     """
     with patch.object(os.path, "join", return_value="A"):
         with patch.object(service, "run", MagicMock(return_value=True)):
             self.assertTrue(service.stop("name"))
Beispiel #2
0
 def test_stop(self):
     '''
     Test to stop the specified service
     '''
     with patch.object(os.path, 'join', return_value='A'):
         with patch.object(service, 'run', MagicMock(return_value=True)):
             self.assertTrue(service.stop('name'))
Beispiel #3
0
 def test_stop(self):
     '''
     Test to stop the specified service
     '''
     with patch.object(os.path, 'join', return_value='A'):
         with patch.dict(service.__salt__,
                         {'cmd.retcode': MagicMock(return_value=False)}):
             self.assertTrue(service.stop('name'))
Beispiel #4
0
 def test_stop(self):
     '''
     Test to stop the specified service
     '''
     with patch.object(os.path, 'join', return_value='A'):
         with patch.dict(service.__salt__, {'cmd.retcode':
                                            MagicMock(return_value=False)}):
             self.assertTrue(service.stop('name'))