(self)
| 71 | filename_chars = "abcdefghijklmopqrstuvwxyz0123456789" |
| 72 | |
| 73 | def setUp(self): |
| 74 | self.test_dir = tempfile.mkdtemp() |
| 75 | self.old_sys_path = list(sys.path) |
| 76 | sys.path.insert(0, self.test_dir) |
| 77 | self.shell = FakeShell() |
| 78 | |
| 79 | def tearDown(self): |
| 80 | shutil.rmtree(self.test_dir) |