Mercurial > vim
view src/testdir/test_autoload.vim @ 23211:96a72f1f6c0c v8.2.2151
patch 8.2.2151: $dir not expanded when configure checks for moonjit
Commit: https://github.com/vim/vim/commit/a79a8944dade9115ccaa5a06a076dfb257e56c62
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Dec 17 20:50:25 2020 +0100
patch 8.2.2151: $dir not expanded when configure checks for moonjit
Problem: $dir not expanded when configure checks for moonjit.
Solution: Use double quotes instead of single quotes. (closes https://github.com/vim/vim/issues/7478)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 17 Dec 2020 21:00:05 +0100 |
parents | 08940efa6b4e |
children | 6e1b0c4ab668 |
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) eval 'bar'->g:foo#addFoo()->assert_equal('barfoo') 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 func Test_autoload_vim9script() call assert_equal('some', auto9#getsome()) call assert_equal(49, auto9#add42(7)) endfunc " vim: shiftwidth=2 sts=2 expandtab