def test_nonexistent_dir(self): try: test_dir = os.path.join(tempfile.gettempdir(), str(uuid.uuid4())) transcribe.recreate_dir(test_dir) self.assertTrue(os.path.isdir(test_dir)) finally: shutil.rmtree(test_dir)
def test_dir_with_contents(self): try: test_dir = tempfile.mkdtemp() tempfile.mkstemp(dir=test_dir) self.assertNotEqual(os.listdir(test_dir), []) transcribe.recreate_dir(test_dir) self.assertEqual(os.listdir(test_dir), []) finally: shutil.rmtree(test_dir)