(self)
| 167 | self.app.on_close() |
| 168 | |
| 169 | def test_main(self): |
| 170 | self.app = self.AppClass(MockRequest(), ('0.0.0.0', 8888), MockServer()) |
| 171 | root_widget = self.app.main() |
| 172 | html = root_widget.repr() |
| 173 | assertValidHTML(html) |
| 174 | |
| 175 | class TestMinefieldApp(unittest.TestCase): |
| 176 | @classmethod |
nothing calls this directly
no test coverage detected