コード例 #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")))