Beispiel #1
0
 def test_mkdir_parents(self):
     util.mkdir(path("results/path/to/dir"))
     self.assertTrue(os.path.isdir(path("results/path/to/dir")))
Beispiel #2
0
 def test_mkdir_new(self):
     util.mkdir(path("results"))
     self.assertTrue(os.path.isdir(path("results")))