(self)
| 34 | self.app.on_close() |
| 35 | |
| 36 | def test_main(self): |
| 37 | self.app = self.AppClass(MockRequest(), ('0.0.0.0', 8888), MockServer()) |
| 38 | root_widget = self.app.main() |
| 39 | html = root_widget.repr() |
| 40 | assertValidHTML(html) |
| 41 | |
| 42 | class TestTemplateApp(unittest.TestCase): |
| 43 | @classmethod |
nothing calls this directly
no test coverage detected