view src/testdir/test_balloon_gui.vim @ 22625:0afa30d6dc72 v8.2.1861

patch 8.2.1861: Vim9: no specific error when parsing lambda fails Commit: https://github.com/vim/vim/commit/a2c026d0fd470d68d679616fddfc285cb4834412 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Oct 18 18:03:17 2020 +0200 patch 8.2.1861: Vim9: no specific error when parsing lambda fails Problem: Vim9: no specific error when parsing lambda fails. Solution: Also give syntax errors when not evaluating. (closes https://github.com/vim/vim/issues/7154)
author Bram Moolenaar <Bram@vim.org>
date Sun, 18 Oct 2020 18:15: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