(self, events)
| 179 | |
| 180 | class TestCursorPosition(TestCase): |
| 181 | def prepare_reader(self, events): |
| 182 | console = FakeConsole(events) |
| 183 | config = ReadlineConfig(readline_completer=None) |
| 184 | reader = ReadlineAlikeReader(console=console, config=config) |
| 185 | return reader |
| 186 | |
| 187 | def test_up_arrow_simple(self): |
| 188 | # fmt: off |
nothing calls this directly
no test coverage detected