Exemple #1
0
def test_safe_mkdir_with_existing(base):
    # an existing path should not raise an exception
    mkdir(base)
Exemple #2
0
def test_safe_mkdir_with_existing(base):
    # an existing path should not raise an exception
    mkdir(base)
Exemple #3
0
def test_safe_mkdir_with_new(base):
    path = os.path.join(base, 'db')
    mkdir(path)
    assert os.path.exists(path)
    assert os.path.isdir(path)
Exemple #4
0
def test_safe_mkdir_with_new(base):
    path = os.path.join(base, 'db')
    mkdir(path)
    assert os.path.exists(path)
    assert os.path.isdir(path)