Esempio n. 1
0
def test_existing_command():
    cmd = which('date')
    assert cmd
    assert os.path.exists(cmd)
    assert os.access(cmd, os.F_OK | os.X_OK)
    assert not os.path.isdir(cmd)
Esempio n. 2
0
def test_non_existing_command():
    assert which('stringthatisntashellcommand') is None
Esempio n. 3
0
 def test_non_existing_command(self):
     self.assertFalse(
         which('stringthatisntashellcommand')
     )
Esempio n. 4
0
 def test_existing_command(self):
     self.assertTrue(
         which('cookiecutter')
     )
Esempio n. 5
0
 def test_non_existing_command(self):
     self.assertFalse(which('stringthatisntashellcommand'))
Esempio n. 6
0
 def test_existing_command(self):
     self.assertTrue(which('cookiecutter'))
Esempio n. 7
0
def test_existing_command():
    assert which('cookiecutter')