mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-04 06:36:24 +00:00
Add a test for #2284
This commit is contained in:
parent
917350f058
commit
84453bf15c
1 changed files with 10 additions and 0 deletions
|
|
@ -125,6 +125,16 @@ class TestMouse(BaseTest):
|
|||
move()
|
||||
self.ae(sel(), str(s.line(0)))
|
||||
release()
|
||||
s.reset()
|
||||
s.draw(' 123')
|
||||
s.linefeed(), s.carriage_return()
|
||||
s.draw(' 456')
|
||||
s.linefeed(), s.carriage_return()
|
||||
multi_click(x=1, count=3)
|
||||
self.ae(sel(), '123')
|
||||
move(x=2, y=1)
|
||||
self.ae(sel(), ' 123\n 456')
|
||||
release()
|
||||
|
||||
# Rectangle select
|
||||
init()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue