(self)
| 276 | |
| 277 | class TestMenuItem(unittest.TestCase): |
| 278 | def test_init(self): |
| 279 | widget = gui.MenuItem('test menu item') |
| 280 | widget.append(gui.MenuItem('2nd menu item')) |
| 281 | self.assertIn('test menu item', widget.repr()) |
| 282 | self.assertIn('2nd menu item', widget.repr()) |
| 283 | assertValidHTML(widget.repr()) |
| 284 | |
| 285 | class TestTreeView(unittest.TestCase): |
| 286 | def test_init(self): |
nothing calls this directly
no test coverage detected