view src/testdir/test_balloon_gui.vim @ 17586:ea5d6716b82e v8.1.1790

patch 8.1.1790: :mkvimrc is not tested commit https://github.com/vim/vim/commit/8750026a7f6b445c43adc990141a3fe92d680b62 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Aug 1 23:05:49 2019 +0200 patch 8.1.1790: :mkvimrc is not tested Problem: :mkvimrc is not tested. Solution: Add a test.
author Bram Moolenaar <Bram@vim.org>
date Thu, 01 Aug 2019 23:15:04 +0200
parents 8e9e9124c7a2
children 403ac78df9a0
line wrap: on
line source

" Tests for 'ballooneval' in the GUI.

if !has('gui_running')
  throw 'Skipped: only works in the GUI'
endif

source check.vim
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