view src/testdir/test_balloon_gui.vim @ 20417:86333cdb8cf8 v8.2.0763

patch 8.2.0763: GUI test fails without the terminal feature Commit: https://github.com/vim/vim/commit/4457e1d98f78152311495b1aff6169383d330a75 Author: Bram Moolenaar <Bram@vim.org> Date: Fri May 15 22:46:44 2020 +0200 patch 8.2.0763: GUI test fails without the terminal feature Problem: GUI test fails without the terminal feature. Solution: Check the terminal feature is supported. (Ken Takata, closes #6084)
author Bram Moolenaar <Bram@vim.org>
date Fri, 15 May 2020 23:00:04 +0200
parents 45eca7143d7c
children 08940efa6b4e
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