(self)
| 21 | @force_not_colorized_test_class |
| 22 | class TestReader(ScreenEqualMixin, TestCase): |
| 23 | def test_calc_screen_wrap_simple(self): |
| 24 | events = code_to_events(10 * "a") |
| 25 | reader, _ = handle_events_narrow_console(events) |
| 26 | self.assert_screen_equal(reader, f"{9*"a"}\\\na") |
| 27 | |
| 28 | def test_calc_screen_wrap_wide_characters(self): |
| 29 | events = code_to_events(8 * "a" + "樂") |
nothing calls this directly
no test coverage detected