(self)
| 110 | self.app.on_close() |
| 111 | |
| 112 | def test_main(self): |
| 113 | self.app = self.AppClass(MockRequest(), ('0.0.0.0', 8888), MockServer()) |
| 114 | root_widget = self.app.main() |
| 115 | html = root_widget.repr() |
| 116 | assertValidHTML(html) |
| 117 | |
| 118 | class TestGridLayoutApp(unittest.TestCase): |
| 119 | @classmethod |
nothing calls this directly
no test coverage detected