(self)
| 77 | self.shell = FakeShell() |
| 78 | |
| 79 | def tearDown(self): |
| 80 | shutil.rmtree(self.test_dir) |
| 81 | sys.path = self.old_sys_path |
| 82 | |
| 83 | self.test_dir = None |
| 84 | self.old_sys_path = None |
| 85 | self.shell = None |
| 86 | |
| 87 | def get_module(self): |
| 88 | module_name = "tmpmod_" + "".join(random.sample(self.filename_chars,20)) |
nothing calls this directly
no outgoing calls
no test coverage detected