(self)
| 373 | |
| 374 | class LiveTailKeyBindingsTest(unittest.TestCase): |
| 375 | def setUp(self) -> None: |
| 376 | self.ui = mock.Mock(InteractiveUI) |
| 377 | self.prompt_buffer = Buffer() |
| 378 | self.output_buffer = Buffer() |
| 379 | self.ui._application = mock.Mock(Application) |
| 380 | self.keyword_highlight = {} |
| 381 | self.key_bindings = LiveTailKeyBindings( |
| 382 | self.ui, |
| 383 | self.prompt_buffer, |
| 384 | self.output_buffer, |
| 385 | self.keyword_highlight, |
| 386 | ) |
| 387 | |
| 388 | def test_reset(self): |
| 389 | event = mock.Mock() |
nothing calls this directly
no test coverage detected