comparison src/testdir/test_autoload.vim @ 13004:41e46caf1030 v8.0.1378

patch 8.0.1378: autoload script sources itself when defining function commit https://github.com/vim/vim/commit/3388d334572f9d65a603d09d75e363805d96c5d9 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Dec 7 22:23:04 2017 +0100 patch 8.0.1378: autoload script sources itself when defining function Problem: Autoload script sources itself when defining function. Solution: Pass TFN_NO_AUTOLOAD to trans_function_name(). (Yasuhiro Matsumoto, closes #2423)
author Christian Brabandt <cb@256bit.org>
date Thu, 07 Dec 2017 22:30:06 +0100
parents f7b2ecaeb79c
children 9ffec4eb8d33
comparison
equal deleted inserted replaced
13003:aa448f6b6dc5 13004:41e46caf1030
1 " Tests for autoload 1 " Tests for autoload
2 2
3 set runtimepath=./sautest 3 set runtimepath=./sautest
4 4
5 func! Test_autoload_dict_func() 5 func Test_autoload_dict_func()
6 let g:loaded_foo_vim = 0 6 let g:loaded_foo_vim = 0
7 let g:called_foo_bar_echo = 0 7 let g:called_foo_bar_echo = 0
8 call g:foo#bar.echo() 8 call g:foo#bar.echo()
9 call assert_equal(1, g:loaded_foo_vim) 9 call assert_equal(1, g:loaded_foo_vim)
10 call assert_equal(1, g:called_foo_bar_echo) 10 call assert_equal(1, g:called_foo_bar_echo)
11 endfunc 11 endfunc
12
13 func Test_source_autoload()
14 let g:loaded_sourced_vim = 0
15 source sautest/autoload/sourced.vim
16 call assert_equal(1, g:loaded_sourced_vim)
17 endfunc