view src/testdir/test_balloon_gui.vim @ 17722:bf807c68ac80 v8.1.1858

patch 8.1.1858: test for multi-byte mapping fails on some systems commit https://github.com/vim/vim/commit/2f710afe7f166973c879bf7424678ba84368c1bb Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 16 20:56:03 2019 +0200 patch 8.1.1858: test for multi-byte mapping fails on some systems Problem: Test for multi-byte mapping fails on some systems. Solution: Test in another way.
author Bram Moolenaar <Bram@vim.org>
date Fri, 16 Aug 2019 21:00:03 +0200
parents 403ac78df9a0
children 45eca7143d7c
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'
  call balloon_show(msg)
  call assert_equal(msg, balloon_gettext())
  sleep 10m
  call balloon_show('')
endfunc