view src/testdir/test_balloon_gui.vim @ 28921:995bc7ba8d5b v8.2.4983

patch 8.2.4983: colors test fails in the GUI Commit: https://github.com/vim/vim/commit/b0855f5324b348921d412d97193e8c8bc3b5d1dd Author: Bram Moolenaar <Bram@vim.org> Date: Fri May 20 10:39:18 2022 +0100 patch 8.2.4983: colors test fails in the GUI Problem: Colors test fails in the GUI. Solution: Reset g:terminal_ansi_colors.
author Bram Moolenaar <Bram@vim.org>
date Fri, 20 May 2022 11:45: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