コード例 #1
0
ファイル: ActionTest.py プロジェクト: cea-hpc/milkcheck
 def test_action_skip(self):
     """Test skip method for actions"""
     action = Action(name='start', target=HOSTNAME, command='/bin/true')
     action.skip()
     self.assertTrue(action.to_skip())
コード例 #2
0
ファイル: ActionTest.py プロジェクト: fihuer/milkcheck
 def test_action_skip(self):
     """Test skip method for actions"""
     action = Action(name='start', target=HOSTNAME, command='/bin/true')
     action.skip()
     self.assertTrue(action.to_skip())