def test_reload_(self): """ Test to restart the specified service """ with patch.object(os.path, "join", return_value="A"): with patch.object(service, "run", MagicMock(return_value=True)): self.assertTrue(service.reload_("name"))
def test_reload_(self): ''' Test to restart the specified service ''' with patch.object(os.path, 'join', return_value='A'): with patch.object(service, 'run', MagicMock(return_value=True)): self.assertTrue(service.reload_('name'))
def test_reload_(self): ''' Test to restart 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.reload_('name'))