Пример #1
0
def test_file_creation_nested(tmpdir):
    """Verify a file can be created in a new directory."""
    tmpdir.chdir()

    dirpath = os.path.join('path', 'to', 'directory')
    path = os.path.join(dirpath, 'file.ext')

    common.touch(path)
    assert os.path.isfile(path)
Пример #2
0
def test_file_creation_nested(tmpdir):
    """Verify a file can be created in a new directory."""
    tmpdir.chdir()

    dirpath = os.path.join('path', 'to', 'directory')
    path = os.path.join(dirpath, 'file.ext')

    common.touch(path)
    assert os.path.isfile(path)
Пример #3
0
def test_file_creation(tmpdir):
    """Verify a file can be created in an existing directory."""
    tmpdir.chdir()

    path = os.path.join('.', 'file.ext')

    common.touch(path)
    assert os.path.isfile(path)

    common.touch(path)  # second call is ignored
    assert os.path.isfile(path)
Пример #4
0
def test_file_creation(tmpdir):
    """Verify a file can be created in an existing directory."""
    tmpdir.chdir()

    path = os.path.join('.', 'file.ext')

    common.touch(path)
    assert os.path.isfile(path)

    common.touch(path)  # second call is ignored
    assert os.path.isfile(path)
Пример #5
0
def test_file_deletion(tmpdir):
    """Verify a file can be deleted."""
    tmpdir.chdir()

    path = os.path.join('.', 'file.ext')

    common.touch(path)
    assert os.path.isfile(path)

    common.delete(path)
    assert not os.path.isfile(path)

    common.delete(path)  # second call is ignored
    assert not os.path.isfile(path)
Пример #6
0
def test_file_deletion(tmpdir):
    """Verify a file can be deleted."""
    tmpdir.chdir()

    path = os.path.join('.', 'file.ext')

    common.touch(path)
    assert os.path.isfile(path)

    common.delete(path)
    assert not os.path.isfile(path)

    common.delete(path)  # second call is ignored
    assert not os.path.isfile(path)
Пример #7
0
def test_directory_deletion(tmpdir):
    """Verify a directory can be deleted."""
    tmpdir.chdir()

    dirpath = os.path.join('path', 'to', 'directory')
    path = os.path.join(dirpath, 'file.ext')

    common.touch(path)
    assert os.path.isdir(dirpath)

    common.delete(dirpath)
    assert not os.path.isdir(dirpath)

    common.delete(dirpath)  # second call is ignored
    assert not os.path.isdir(dirpath)
Пример #8
0
def test_directory_deletion(tmpdir):
    """Verify a directory can be deleted."""
    tmpdir.chdir()

    dirpath = os.path.join('path', 'to', 'directory')
    path = os.path.join(dirpath, 'file.ext')

    common.touch(path)
    assert os.path.isdir(dirpath)

    common.delete(dirpath)
    assert not os.path.isdir(dirpath)

    common.delete(dirpath)  # second call is ignored
    assert not os.path.isdir(dirpath)