(self)
| 234 | self.assertTrue(self.spam.is_optimized()) |
| 235 | |
| 236 | def test_nested(self): |
| 237 | self.assertFalse(self.top.is_nested()) |
| 238 | self.assertFalse(self.Mine.is_nested()) |
| 239 | self.assertFalse(self.spam.is_nested()) |
| 240 | self.assertTrue(self.internal.is_nested()) |
| 241 | |
| 242 | def test_children(self): |
| 243 | self.assertTrue(self.top.has_children()) |
nothing calls this directly
no test coverage detected