view src/testdir/test_autoload.vim @ 15343:8543eaf63f65 v8.1.0679

patch 8.1.0679: sign functions do not take buffer argument as documented commit https://github.com/vim/vim/commit/2cbc1a02cb72916dfdbd0d307512c7c3fb766edf Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 2 13:40:31 2019 +0100 patch 8.1.0679: sign functions do not take buffer argument as documented Problem: Sign functions do not take buffer argument as documented. Solution: Use get_buf_tv(). (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/3755)
author Bram Moolenaar <Bram@vim.org>
date Wed, 02 Jan 2019 13:45:06 +0100
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