(self)
| 72 | self.app.on_close() |
| 73 | |
| 74 | def test_main(self): |
| 75 | self.app = self.AppClass(MockRequest(), ('0.0.0.0', 8888), MockServer()) |
| 76 | root_widget = self.app.main() |
| 77 | html = root_widget.repr() |
| 78 | assertValidHTML(html) |
| 79 | |
| 80 | class TestCloseableApp(unittest.TestCase): |
| 81 | @classmethod |
nothing calls this directly
no test coverage detected