Esempio n. 1
0
 def complete(self):
     return which(self.name) is not None
Esempio n. 2
0
 def test_which(self):
     self.assertTrue(which('ls') is not None)
     self.assertTrue(which('ls').endswith('bin/ls'))
     self.assertTrue(which('veryunlikely1234') is None)
Esempio n. 3
0
 def complete(self):
     return which(self.name) is not None