(self)
| 33 | self.module_path = os.path.join(self.package_dir, 'foo.py') |
| 34 | |
| 35 | def tearDown(self): |
| 36 | shutil.rmtree(self.test_dir) |
| 37 | self.assertNotEqual(sys.path.count(self.test_dir), 0) |
| 38 | sys.path.remove(self.test_dir) |
| 39 | self.remove_modules() |
| 40 | |
| 41 | def rewrite_file(self, contents): |
| 42 | try: |
nothing calls this directly
no test coverage detected