def test_safe_mkdir_with_existing(base): # an existing path should not raise an exception mkdir(base)
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)