summaryrefslogtreecommitdiff
path: root/src/testdir/test_autoload.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-12-07 22:23:04 +0100
committerBram Moolenaar <Bram@vim.org>2017-12-07 22:23:04 +0100
commit3388d334572f9d65a603d09d75e363805d96c5d9 (patch)
tree181aa5869c33377419fccbcc140801cfeeeffc23 /src/testdir/test_autoload.vim
parent6e65d594aa33be11f6074f26e9ff81b52504c62b (diff)
downloadvim-git-3388d334572f9d65a603d09d75e363805d96c5d9.tar.gz
patch 8.0.1378: autoload script sources itself when defining functionv8.0.1378
Problem: Autoload script sources itself when defining function. Solution: Pass TFN_NO_AUTOLOAD to trans_function_name(). (Yasuhiro Matsumoto, closes #2423)
Diffstat (limited to 'src/testdir/test_autoload.vim')
-rw-r--r--src/testdir/test_autoload.vim8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/testdir/test_autoload.vim b/src/testdir/test_autoload.vim
index a92851f65..7396c227c 100644
--- a/src/testdir/test_autoload.vim
+++ b/src/testdir/test_autoload.vim
@@ -2,10 +2,16 @@
set runtimepath=./sautest
-func! Test_autoload_dict_func()
+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