view src/testdir/test_balloon_gui.vim @ 22083:c67a9d3b3683 v8.2.1591

patch 8.2.1591: using winheight('.') in tests works but is wrong Commit: https://github.com/vim/vim/commit/c05d1c043a25c7a52dbf0a740d3f715a9d2691f7 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Sep 4 18:38:06 2020 +0200 patch 8.2.1591: using winheight('.') in tests works but is wrong Problem: Using winheight('.') in tests works but is wrong. Solution: Use winheight(0). (issue https://github.com/vim/vim/issues/6863)
author Bram Moolenaar <Bram@vim.org>
date Fri, 04 Sep 2020 18:45:05 +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