view src/testdir/test_balloon_gui.vim @ 27571:55f0ac079829 v8.2.4312

patch 8.2.4312: no error for using :vim9script in a :def function Commit: https://github.com/vim/vim/commit/107f7325f615a1ffa5b49521e316b44e117b0a04 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 6 17:30:41 2022 +0000 patch 8.2.4312: no error for using :vim9script in a :def function Problem: No error for using :vim9script in a :def function. Solution: Give an error when compiling.
author Bram Moolenaar <Bram@vim.org>
date Sun, 06 Feb 2022 18:45:03 +0100
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