view src/testdir/test_gui_init.vim @ 33730:1a0886e98382 v9.0.2094

patch 9.0.2094: Vim9: need more assignment tests Commit: https://github.com/vim/vim/commit/1fc47c2c9bf3121268ebab03a0662e0cf2e5cb26 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Wed Nov 8 21:02:48 2023 +0100 patch 9.0.2094: Vim9: need more assignment tests Problem: Vim9: need more assignment tests Solution: Add test for using different types in assignment, function arguments and return values closes: #13491 Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 08 Nov 2023 21:15:04 +0100
parents 34b75c77a7bd
children
line wrap: on
line source

" Tests specifically for the GUI features/options that need to be set up at
" startup to take effect at runtime.

source shared.vim
source check.vim
CheckCanRunGui

source setup_gui.vim

func Setup()
  call GUISetUpCommon()
endfunc

func TearDown()
  call GUITearDownCommon()
endfunc

" Ignore the "failed to create input context" error.
call test_ignore_error('E285:')

" Start the GUI now, in the foreground.
gui -f

func Test_set_guiheadroom()
  CheckX11BasedGui

  " The 'expected' value must be consistent with the value specified with
  " gui_init.vim.
  call assert_equal(0, &guiheadroom)
endfunc

func Test_set_guioptions_for_M()
  sleep 200ms
  " Check if the 'M' option is included.
  call assert_match('.*M.*', &guioptions)
endfunc

func Test_set_guioptions_for_p()
  CheckX11BasedGui

  sleep 200ms
  " Check if the 'p' option is included.
  call assert_match('.*p.*', &guioptions)
endfunc

" vim: shiftwidth=2 sts=2 expandtab