(self)
| 224 | self.app.on_close() |
| 225 | |
| 226 | def test_main(self): |
| 227 | self.app = self.AppClass(MockRequest(), ('0.0.0.0', 8888), MockServer()) |
| 228 | root_widget = self.app.main() |
| 229 | html = root_widget.repr() |
| 230 | assertValidHTML(html) |
| 231 | |
| 232 | class TestPageInternalsApp(unittest.TestCase): |
| 233 | @classmethod |
nothing calls this directly
no test coverage detected