(self)
| 179 | class ReloadTests: |
| 180 | |
| 181 | def test_reload_modules(self): |
| 182 | for mod in ('tokenize', 'time', 'marshal'): |
| 183 | with self.subTest(module=mod): |
| 184 | with import_helper.CleanImport(mod): |
| 185 | module = self.init.import_module(mod) |
| 186 | self.init.reload(module) |
| 187 | |
| 188 | def test_module_replaced(self): |
| 189 | def code(): |
nothing calls this directly
no test coverage detected