예제 #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")))