view src/testdir/test_autoload.vim @ 26107:012faa52874b v8.2.3586

patch 8.2.3586: command completion test fails Commit: https://github.com/vim/vim/commit/326e7da609a1b115b0ed535e89e970afebe99e35 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Nov 12 16:06:03 2021 +0000 patch 8.2.3586: command completion test fails Problem: Command completion test fails. Solution: Add new argument to expected output
author Bram Moolenaar <Bram@vim.org>
date Fri, 12 Nov 2021 17:15:04 +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