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'))
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"))