view src/testdir/test_winbar.vim @ 15172:de7e90fb445c v8.1.0596

patch 8.1.0596: not all parts of printf() are tested commit https://github.com/vim/vim/commit/21e551cce26ea6ff389b6c90f1945facf1a8a066 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Dec 15 16:08:56 2018 +0100 patch 8.1.0596: not all parts of printf() are tested Problem: Not all parts of printf() are tested. Solution: Add a few more test cases. (Dominique Pelle, closes https://github.com/vim/vim/issues/3691)
author Bram Moolenaar <Bram@vim.org>
date Sat, 15 Dec 2018 16:15:05 +0100
parents 3f16cf18386c
children a147acab726f
line wrap: on
line source

" Test WinBar

if !has('menu')
  finish
endif

func Test_add_remove_menu()
  new
  amenu 1.10 WinBar.Next :let g:did_next = 11<CR>
  amenu 1.20 WinBar.Cont :let g:did_cont = 12<CR>
  emenu WinBar.Next
  call assert_equal(11, g:did_next)
  emenu WinBar.Cont
  call assert_equal(12, g:did_cont)

  wincmd w
  call assert_fails('emenu WinBar.Next', 'E334')
  wincmd p

  aunmenu WinBar.Next
  aunmenu WinBar.Cont
  close
endfunc