(self)
| 36 | |
| 37 | class TestGridBox(unittest.TestCase): |
| 38 | def test_init(self): |
| 39 | w = gui.GridBox() |
| 40 | l = gui.Label('box_label') |
| 41 | w.append(l) |
| 42 | self.assertIn('box_label',w.repr()) |
| 43 | assertValidHTML(w.repr()) |
| 44 | |
| 45 | class TestHBox(unittest.TestCase): |
| 46 | def test_init(self): |
nothing calls this directly
no test coverage detected