コード例 #1
0
ファイル: test_utils.py プロジェクト: Web5design/Bento
 def test_cmd_is_not_runnable(self):
     st = cmd_is_runnable(["phython", "-c", "''"])
     self.assertFalse(st)
コード例 #2
0
 def test_cmd_is_not_runnable(self):
     st = cmd_is_runnable(["phython", "-c", "''"])
     self.assertFalse(st)
コード例 #3
0
ファイル: test_utils.py プロジェクト: Web5design/Bento
 def test_cmd_is_runnable(self):
     st = cmd_is_runnable(["python", "-c", "''"])
     self.assertTrue(st)
コード例 #4
0
 def test_cmd_is_runnable(self):
     st = cmd_is_runnable(["python", "-c", "''"])
     self.assertTrue(st)