Mercurial > vim
view src/testdir/test_balloon_gui.vim @ 28621:333be301dfe8 v8.2.4834
patch 8.2.4834: Vim9: some lines not covered by tests
Commit: https://github.com/vim/vim/commit/06651630ee35111839e627e1bcbac94b86347883
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Apr 27 17:54:25 2022 +0100
patch 8.2.4834: Vim9: some lines not covered by tests
Problem: Vim9: some lines not covered by tests.
Solution: Add a few more tests. Remove dead code.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 27 Apr 2022 19:00:03 +0200 |
parents | 08940efa6b4e |
children |
line wrap: on
line source
" Tests for 'ballooneval' in the GUI. source check.vim CheckGui CheckFeature balloon_eval func Test_balloon_show_gui() let msg = 'this this this this' call balloon_show(msg) call assert_equal(msg, balloon_gettext()) sleep 10m call balloon_show('') let msg = 'that that' eval msg->balloon_show() call assert_equal(msg, balloon_gettext()) sleep 10m call balloon_show('') endfunc " vim: shiftwidth=2 sts=2 expandtab