xref: /vim-8.2.3635/src/testdir/test_menu.vim (revision cb03397a)
1" Test that the system menu can be loaded.
2
3func Test_load_menu()
4  try
5    source $VIMRUNTIME/menu.vim
6  catch
7    call assert_false(1, 'error while loading menus: ' . v:exception)
8  endtry
9endfunc
10