(self)
| 240 | self.assertTrue(self.spam.is_optimized()) |
| 241 | |
| 242 | def test_nested(self): |
| 243 | self.assertFalse(self.top.is_nested()) |
| 244 | self.assertFalse(self.Mine.is_nested()) |
| 245 | self.assertFalse(self.spam.is_nested()) |
| 246 | self.assertTrue(self.internal.is_nested()) |
| 247 | |
| 248 | def test_children(self): |
| 249 | self.assertTrue(self.top.has_children()) |
nothing calls this directly
no test coverage detected