view src/testdir/test_balloon_gui.vim @ 24661:f51ea1b6d512 v8.2.2869

patch 8.2.2869: using unified diff is not tested Commit: https://github.com/vim/vim/commit/485b62710004431a16feb4eb861365d082304a08 Author: Bram Moolenaar <Bram@vim.org> Date: Tue May 18 19:19:03 2021 +0200 patch 8.2.2869: using unified diff is not tested Problem: Using unified diff is not tested. Solution: Test all cases also with unified diff. (issue https://github.com/vim/vim/issues/8197)
author Bram Moolenaar <Bram@vim.org>
date Tue, 18 May 2021 19:30: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