Mercurial > vim
view src/testdir/test_balloon_gui.vim @ 30379:25e3121ed316 v9.0.0525
patch 9.0.0525: manually deleting temp test files
Commit: https://github.com/vim/vim/commit/5917341f65d4fc669b9d15343ccdb00c160201da
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Sep 20 22:01:33 2022 +0100
patch 9.0.0525: manually deleting temp test files
Problem: Manually deleting temp test files.
Solution: Add the 'D' flag to writefile().
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 20 Sep 2022 23:15:04 +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