示例#1
0
文件: test_util.py 项目: lowks/coal
 def test_mkdir_parents(self):
     util.mkdir(path("results/path/to/dir"))
     self.assertTrue(os.path.isdir(path("results/path/to/dir")))
示例#2
0
文件: test_util.py 项目: lowks/coal
 def test_mkdir_new(self):
     util.mkdir(path("results"))
     self.assertTrue(os.path.isdir(path("results")))