(self)
| 91 | self.app.on_close() |
| 92 | |
| 93 | def test_main(self): |
| 94 | self.app = self.AppClass(MockRequest(), ('0.0.0.0', 8888), MockServer()) |
| 95 | root_widget = self.app.main() |
| 96 | html = root_widget.repr() |
| 97 | assertValidHTML(html) |
| 98 | |
| 99 | class TestGaugeApp(unittest.TestCase): |
| 100 | @classmethod |
nothing calls this directly
no test coverage detected