Exemplo n.º 1
0
def test_is_executable__rel_path__is_executable():
    assert is_executable("tests/unit/run")
Exemplo n.º 2
0
def test_is_executable__rel_path__is_non_executable():
    assert not is_executable("tests/data/empty_file_1")
Exemplo n.º 3
0
def test_is_executable__full_path__is_executable():
    assert is_executable("/bin/ls")
Exemplo n.º 4
0
def test_is_executable__full_path__is_non_executable():
    assert not is_executable("/etc/fstab")
Exemplo n.º 5
0
def test_is_executable__rel_path__is_non_executable():
    assert not is_executable("tests/data/empty_file_1")
Exemplo n.º 6
0
def test_is_executable__rel_path__is_executable():
    assert is_executable("tests/unit/run")
Exemplo n.º 7
0
def test_is_executable__full_path__is_non_executable():
    assert not is_executable("/etc/fstab")
Exemplo n.º 8
0
def test_is_executable__full_path__is_executable():
    assert is_executable("/bin/ls")
Exemplo n.º 9
0
def test_is_executable__full_path__folder_is_non_executable():
    assert not is_executable("/etc")