diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-07-25 17:21:55 +0800 |
|---|---|---|
| committer | zeertzjq <zeertzjq@outlook.com> | 2022-07-25 18:20:47 +0800 |
| commit | aba3147cb62339714633b53f9ba114b08c5d6761 (patch) | |
| tree | f6137de0e2cda3fd7dab3cb998fd0d38b86c202a /src/nvim/testdir/test_normal.vim | |
| parent | d8df9afad62a9a4beb4ec607f8e10d674de66dbe (diff) | |
| download | rneovim-aba3147cb62339714633b53f9ba114b08c5d6761.tar.gz rneovim-aba3147cb62339714633b53f9ba114b08c5d6761.tar.bz2 rneovim-aba3147cb62339714633b53f9ba114b08c5d6761.zip | |
vim-patch:8.2.4228: no tests for clicking in the GUI tabline
Problem: No tests for clicking in the GUI tabline.
Solution: Add test functions to generate the events. Add tests using the
functions. (Yegappan Lakshmanan, closes vim/vim#9638)
https://github.com/vim/vim/commit/b0ad2d92fd19e673ddbbc66742bae3f71778efde
Diffstat (limited to 'src/nvim/testdir/test_normal.vim')
| -rw-r--r-- | src/nvim/testdir/test_normal.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_normal.vim b/src/nvim/testdir/test_normal.vim index ffa0cd1807..f18ddb274c 100644 --- a/src/nvim/testdir/test_normal.vim +++ b/src/nvim/testdir/test_normal.vim @@ -580,6 +580,7 @@ endfunc func Test_normal_z_error() call assert_beeps('normal! z2p') call assert_beeps('normal! zq') + call assert_beeps('normal! cz1') endfunc func Test_normal15_z_scroll_vert() @@ -619,7 +620,7 @@ func Test_normal15_z_scroll_vert() call assert_equal(10, winheight(0)) exe "norm! z12\<cr>" call assert_equal(12, winheight(0)) - exe "norm! z10\<cr>" + exe "norm! z15\<Del>0\<cr>" call assert_equal(10, winheight(0)) " Test for z. |