(self)
| 96 | self.assertEqual(module, importer.loaded) |
| 97 | |
| 98 | def test_attr_unchanged(self): |
| 99 | # An attribute only mutated as a side-effect of import should not be |
| 100 | # changed needlessly. |
| 101 | module = self.new_module() |
| 102 | self.assertEqual(TestingImporter.mutated_name, module.__name__) |
| 103 | |
| 104 | def test_new_attr(self): |
| 105 | # A new attribute should persist. |
nothing calls this directly
no test coverage detected