diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-06-11 17:42:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-11 17:42:21 +0200 |
commit | 81a6b70880efa21dc45c6b222ca3c2d794c85b36 (patch) | |
tree | dbccb3560996a9ef3aac1ad176ada23dfe986cc2 /test/functional/legacy/packadd_spec.lua | |
parent | fa768152dc5523ce7656a55253a626eea5180396 (diff) | |
parent | e1edc079dd0d0cb4a53e5998086568cf9d10a26a (diff) | |
download | rneovim-81a6b70880efa21dc45c6b222ca3c2d794c85b36.tar.gz rneovim-81a6b70880efa21dc45c6b222ca3c2d794c85b36.tar.bz2 rneovim-81a6b70880efa21dc45c6b222ca3c2d794c85b36.zip |
Merge pull request #14686 from shadmansaleh/feat/evaluate_plugin/lua
runtime: allow to use .lua files for most features defined as &rtp/{feature}/*.vim
Diffstat (limited to 'test/functional/legacy/packadd_spec.lua')
-rw-r--r-- | test/functional/legacy/packadd_spec.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/functional/legacy/packadd_spec.lua b/test/functional/legacy/packadd_spec.lua index 486a1fe471..48cd3ef9f8 100644 --- a/test/functional/legacy/packadd_spec.lua +++ b/test/functional/legacy/packadd_spec.lua @@ -101,9 +101,14 @@ describe('packadd', function() call setline(1, 'let g:plugin_works = 24') wq + exe 'split ' . plugdir . '/plugin/test.lua' + call setline(1, 'vim.g.plugin_lua_works = 24') + wq + packadd other call assert_equal(24, g:plugin_works) + call assert_equal(24, g:plugin_lua_works) call assert_true(len(&rtp) > len(rtp)) call assert_match(Escape(plugdir) . '\($\|,\)', &rtp) endfunc @@ -117,13 +122,18 @@ describe('packadd', function() exe 'split ' . s:plugdir . '/plugin/test.vim' call setline(1, 'let g:plugin_works = 42') wq + exe 'split ' . s:plugdir . '/plugin/test.lua' + call setline(1, 'let g:plugin_lua_works = 42') + wq let g:plugin_works = 0 + let g:plugin_lua_works = 0 packadd! mytest call assert_true(len(&rtp) > len(rtp)) call assert_match(Escape(s:plugdir) . '\($\|,\)', &rtp) call assert_equal(0, g:plugin_works) + call assert_equal(0, g:plugin_lua_works) " check the path is not added twice let new_rtp = &rtp |