view src/testdir/test_menu.vim @ 9303:1cc29584ef6d v7.4.1934

commit https://github.com/vim/vim/commit/9bd31860521b53ad657c4d6d320d670e30a049f8 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 13 22:58:39 2016 +0200 patch 7.4.1934 Problem: New style tests not executed with MinGW compiler. Solution: Add new style test support. (Yegappan Lakshmanan)
author Christian Brabandt <cb@256bit.org>
date Mon, 13 Jun 2016 23:00:06 +0200
parents 6f14d7da2d8a
children eb3a2ff3309a
line wrap: on
line source

" Test that the system menu can be loaded.

func Test_load_menu()
  try
    source $VIMRUNTIME/menu.vim
  catch
    call assert_false(1, 'error while loading menus: ' . v:exception)
  endtry
endfunc