mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-31 22:32:45 +00:00
Add test for ignored color id in SGR colon based color sequence
This commit is contained in:
parent
346a9f68b1
commit
898395253b
1 changed files with 5 additions and 0 deletions
|
|
@ -317,6 +317,11 @@ class TestScreen(BaseTest):
|
|||
c = s.line(1).cursor_from(0)
|
||||
self.ae(c.fg, (5 << 8) | 1)
|
||||
self.ae(c.bg, 0)
|
||||
s.cursor_position(2, 2)
|
||||
s.select_graphic_rendition(38, 2, 99, 1, 2, 3)
|
||||
s.draw('c')
|
||||
c = s.line(1).cursor_from(1)
|
||||
self.ae(c.fg, (1 << 24) | (2 << 16) | (3 << 8) | 2)
|
||||
|
||||
def test_cursor_hidden(self):
|
||||
s = self.create_screen()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue