(self)
| 243 | self.app.on_close() |
| 244 | |
| 245 | def test_main(self): |
| 246 | self.app = self.AppClass(MockRequest(), ('0.0.0.0', 8888), MockServer()) |
| 247 | root_widget = self.app.main() |
| 248 | html = root_widget.repr() |
| 249 | assertValidHTML(html) |
| 250 | |
| 251 | class TestPilApp(unittest.TestCase): |
| 252 | @classmethod |
nothing calls this directly
no test coverage detected