More CSI handlers

This commit is contained in:
Kovid Goyal
2016-11-16 20:19:31 +05:30
parent 745ba5c4cb
commit f5fa40de81
4 changed files with 33 additions and 1 deletions

View File

@@ -73,4 +73,7 @@ class TestScreen(BaseTest):
pb('\033[3;2H', ('screen_cursor_position', 3, 2))
pb('\033[3;2;H', ('screen_cursor_position', 3, 2))
self.ae(s.cursor.x, 1), self.ae(s.cursor.y, 2)
pb('\033[J', ('screen_erase_in_display', 0, 0))
pb('\033[?J', ('screen_erase_in_display', 0, 1))
pb('\033[?2J', ('screen_erase_in_display', 2, 1))
s.reset()