Esempio n. 1
0
def test_safe_mkdir_with_existing(base):
    # an existing path should not raise an exception
    mkdir(base)
Esempio n. 2
0
def test_safe_mkdir_with_existing(base):
    # an existing path should not raise an exception
    mkdir(base)
Esempio n. 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)
Esempio n. 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)