mirror of
https://github.com/vim/vim
synced 2025-07-15 16:51:57 +00:00
Problem: tests: too many imports in the test suite Solution: Clean up the imported scripts Most tests make use of check.vim, so let's just source it once in runtest.vim instead of having each test manually source it. runtest.vim already sources shared.vim, which again sources view_util.vim, so we don't need to source those two common dependencies in all the other tests And then check.vim sources term_util.vim already, so we can in addition drop sourcing it explicitly in each single test script. Note: test_expand_func.vim had to be updated to account for the changed number of sourced files. And finally check.vim uses line-continuation so let's also explicitly enable line continuation via the 'cpo' option value. related: #17677 Signed-off-by: Christian Brabandt <cb@256bit.org>
21 lines
420 B
VimL
21 lines
420 B
VimL
" Tests for 'ballooneval' in the GUI.
|
|
|
|
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
|