(self, events)
| 649 | |
| 650 | class TestPyReplOutput(ScreenEqualMixin, TestCase): |
| 651 | def prepare_reader(self, events): |
| 652 | console = FakeConsole(events) |
| 653 | config = ReadlineConfig(readline_completer=None) |
| 654 | reader = ReadlineAlikeReader(console=console, config=config) |
| 655 | reader.can_colorize = False |
| 656 | return reader |
| 657 | |
| 658 | def test_stdin_is_tty(self): |
| 659 | # Used during test log analysis to figure out if a TTY was available. |
no test coverage detected