(self)
| 817 | self.assert_screen_equal(reader, "1+1", clean=True) |
| 818 | |
| 819 | def test_control_character(self): |
| 820 | events = code_to_events("c\x1d\n") |
| 821 | reader = self.prepare_reader(events) |
| 822 | output = multiline_input(reader) |
| 823 | self.assertEqual(output, "c\x1d") |
| 824 | self.assert_screen_equal(reader, "c\x1d", clean=True) |
| 825 | |
| 826 | def test_history_search_backward(self): |
| 827 | # Test <page up> history search backward with "imp" input |
nothing calls this directly
no test coverage detected