(self)
| 53 | self.app.on_close() |
| 54 | |
| 55 | def test_main(self): |
| 56 | self.app = self.AppClass(MockRequest(), ('0.0.0.0', 8888), MockServer()) |
| 57 | root_widget = self.app.main() |
| 58 | html = root_widget.repr() |
| 59 | assertValidHTML(html) |
| 60 | |
| 61 | class TestAppendAndRemoveWidgetsApp(unittest.TestCase): |
| 62 | @classmethod |
nothing calls this directly
no test coverage detected