view src/testdir/test_balloon_gui.vim @ 33242:6fbeeebdc7f3 v9.0.1894

patch 9.0.1894: CI: trailing whitespace in tests Commit: https://github.com/vim/vim/commit/e5f7cd0a60d0eeab84f7aeb35c13d3af7e50072e Author: Christian Brabandt <cb@256bit.org> Date: Sun Sep 10 19:25:26 2023 +0200 patch 9.0.1894: CI: trailing whitespace in tests Problem: CI: trailing white space in tests Solution: clean up the trailing white space Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sun, 10 Sep 2023 19:30:02 +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