(self)
| 115 | self.assertEqual('bogus', module.__name__) |
| 116 | |
| 117 | def test_mutated_attr(self): |
| 118 | # Changing an attribute that comes into existence after an import |
| 119 | # should persist. |
| 120 | module = self.new_module() |
| 121 | module.attr = 6 |
| 122 | self.assertEqual(6, module.attr) |
| 123 | |
| 124 | def test_delete_eventual_attr(self): |
| 125 | # Deleting an attribute should stay deleted. |
nothing calls this directly
no test coverage detected