Example #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)
Example #2
0
def test_non_existing_command():
    assert which('stringthatisntashellcommand') is None
Example #3
0
 def test_non_existing_command(self):
     self.assertFalse(
         which('stringthatisntashellcommand')
     )
Example #4
0
 def test_existing_command(self):
     self.assertTrue(
         which('cookiecutter')
     )
Example #5
0
 def test_non_existing_command(self):
     self.assertFalse(which('stringthatisntashellcommand'))
Example #6
0
 def test_existing_command(self):
     self.assertTrue(which('cookiecutter'))
Example #7
0
def test_existing_command():
    assert which('cookiecutter')