view src/testdir/test_autoload.vim @ 26274:84eb3e0ad3f4 v8.2.3668

patch 8.2.3668: messages may be corrupted Commit: https://github.com/vim/vim/commit/bb277fd89fd7c665d51be2a08993732d46c208ef Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Wed Nov 24 20:28:31 2021 +0000 patch 8.2.3668: messages may be corrupted Problem: Messages may be corrupted. Solution: Use another buffer instead of IObuff. (Yegappan Lakshmanan, closes #9195)
author Bram Moolenaar <Bram@vim.org>
date Wed, 24 Nov 2021 21:30:03 +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