(self)
| 164 | assert 'already disabled' in panel.handle('disable_events')['ok'] |
| 165 | |
| 166 | def test_clock(self): |
| 167 | consumer = Consumer(self.app) |
| 168 | panel = self.create_panel(consumer=consumer) |
| 169 | panel.state.app.clock.value = 313 |
| 170 | x = panel.handle('clock') |
| 171 | assert x['clock'] == 313 |
| 172 | |
| 173 | def test_hello(self): |
| 174 | consumer = Consumer(self.app) |
nothing calls this directly
no test coverage detected