view src/testdir/test_autoload.vim @ 16541:822d00007b34 v8.1.1274

patch 8.1.1274: after :unmenu can still execute the menu with :emenu commit https://github.com/vim/vim/commit/ce79353ace9e21238f13655089363cd23cbb6b32 Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 5 14:19:20 2019 +0200 patch 8.1.1274: after :unmenu can still execute the menu with :emenu Problem: After :unmenu can still execute the menu with :emenu. Solution: Do not execute a menu that was disabled for the specified mode.
author Bram Moolenaar <Bram@vim.org>
date Sun, 05 May 2019 14:30:05 +0200
parents 41e46caf1030
children 9ffec4eb8d33
line wrap: on
line source

" Tests for autoload

set runtimepath=./sautest

func Test_autoload_dict_func()
  let g:loaded_foo_vim = 0
  let g:called_foo_bar_echo = 0
  call g:foo#bar.echo()
  call assert_equal(1, g:loaded_foo_vim)
  call assert_equal(1, g:called_foo_bar_echo)
endfunc

func Test_source_autoload()
  let g:loaded_sourced_vim = 0
  source sautest/autoload/sourced.vim
  call assert_equal(1, g:loaded_sourced_vim)
endfunc