(self)
| 344 | self.assert_screen_equal(reader, f"{code}a") |
| 345 | |
| 346 | def test_pos2xy_with_no_columns(self): |
| 347 | console = prepare_console([]) |
| 348 | reader = prepare_reader(console) |
| 349 | # Simulate a resize to 0 columns |
| 350 | reader.screeninfo = [] |
| 351 | self.assertEqual(reader.pos2xy(), (0, 0)) |
| 352 | |
| 353 | def test_setpos_from_xy_for_non_printing_char(self): |
| 354 | code = "# non \u200c printing character" |
nothing calls this directly
no test coverage detected