view src/testdir/test_autoload.vim @ 18834:aaea9672a96d v8.1.2404

patch 8.1.2404: channel test fails under valgrind Commit: https://github.com/vim/vim/commit/08d2e795e72837a015e69894fb8ebd178e4014c9 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Dec 7 17:10:25 2019 +0100 patch 8.1.2404: channel test fails under valgrind Problem: Channel test fails under valgrind. Solution: Sleep a bit longer.
author Bram Moolenaar <Bram@vim.org>
date Sat, 07 Dec 2019 17:15:05 +0100
parents 9ffec4eb8d33
children b0b57d91671c
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