(self)
| 129 | self.app.on_close() |
| 130 | |
| 131 | def test_main(self): |
| 132 | self.app = self.AppClass(MockRequest(), ('0.0.0.0', 8888), MockServer()) |
| 133 | root_widget = self.app.main() |
| 134 | html = root_widget.repr() |
| 135 | assertValidHTML(html) |
| 136 | |
| 137 | class TestLayoutApp(unittest.TestCase): |
| 138 | @classmethod |
nothing calls this directly
no test coverage detected