示例#1
0
文件: archive.py 项目: ruslo/configs
 def setUp(self):
   from detail.shutil import rmtree
   self.temp_path = './__tmp_testing__'
   rmtree(self.temp_path)
   os.mkdir(self.temp_path)
   self.assertEqual(
       [x for x in os.walk(self.temp_path)],
       [('./__tmp_testing__', [], [])]
   )
示例#2
0
文件: archive.py 项目: ruslo/configs
 def tearDown(self):
   from detail.shutil import rmtree
   self.temp_path = './__tmp_testing__'
   rmtree(self.temp_path)