Esempio n. 1
0
 def test_reload(self):
     '''
     Test if it reload the specified service.
     '''
     with patch.object(rh_service, '_service_is_upstart', self._m_bool()):
         with patch.dict(rh_service.__salt__, {'cmd.retcode':
                                               self._m_bool(False)}):
             self.assertTrue(rh_service.reload_('salt-api'))
Esempio n. 2
0
 def test_reload(self):
     '''
     Test if it reload the specified service.
     '''
     with patch.object(rh_service, '_service_is_upstart', self._m_bool()):
         with patch.dict(rh_service.__salt__,
                         {'cmd.retcode': self._m_bool(False)}):
             self.assertTrue(rh_service.reload_('salt-api'))
Esempio n. 3
0
 def test_reload(self):
     """
     Test if it reload the specified service.
     """
     with patch.object(rh_service, "_service_is_upstart", self._m_bool()):
         with patch.dict(rh_service.__salt__,
                         {"cmd.retcode": self._m_bool(False)}):
             self.assertTrue(rh_service.reload_("salt-api"))