view src/testdir/test_balloon_gui.vim @ 24118:1027495445bc v8.2.2600

patch 8.2.2600: Vim9: crash when putting an unknown type in a dictionary Commit: https://github.com/vim/vim/commit/93e1cae739c32baf28954b64718bab009c6ee2ac Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 13 21:24:56 2021 +0100 patch 8.2.2600: Vim9: crash when putting an unknown type in a dictionary Problem: Vim9: crash when putting an unknown type in a dictionary. (Yegappan Lakshmanan) Solution: Handle a NULL type pointer.
author Bram Moolenaar <Bram@vim.org>
date Sat, 13 Mar 2021 21:30: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