コード例 #1
0
ファイル: common.py プロジェクト: tsolakidis/gluish
 def complete(self):
     return which(self.name) is not None
コード例 #2
0
ファイル: path_test.py プロジェクト: tsolakidis/gluish
 def test_which(self):
     self.assertTrue(which('ls') is not None)
     self.assertTrue(which('ls').endswith('bin/ls'))
     self.assertTrue(which('veryunlikely1234') is None)
コード例 #3
0
ファイル: common.py プロジェクト: tsolakidis/gluish
 def complete(self):
     return which(self.name) is not None