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))
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))