(self)
| 25 | |
| 26 | class TestHEAD(unittest.TestCase): |
| 27 | def test_init(self): |
| 28 | widget = gui.HEAD(title="my remi app") |
| 29 | self.assertIn('my remi app', widget.repr()) |
| 30 | assertValidHTML(widget.repr()) |
| 31 | |
| 32 | class TestBODY(unittest.TestCase): |
| 33 | def test_init(self): |
nothing calls this directly
no test coverage detected