示例#1
0
 def test_partiallyexists(self):
     path = os.path.join(self.test_root, "partiallyexists", "foo", "bar", "baz")
     wsgi_handler.makedirs(path)
     self.assertTrue(os.path.isdir(path))
示例#2
0
 def test_didnotexist(self):
     path = os.path.join(self.test_root, "didnotexist", "foo", "bar", "baz")
     wsgi_handler.makedirs(path)
     self.assertTrue(os.path.isdir(path))