view src/testdir/test_autoload.vim @ 27281:f7d73708b391 v8.2.4169

patch 8.2.4169: MS-Windows: unnessary casts and other minor things Commit: https://github.com/vim/vim/commit/45f9cfbdc75e10d420039fbe98d9f554bd415213 Author: K.Takata <kentkt@csc.jp> Date: Fri Jan 21 11:11:00 2022 +0000 patch 8.2.4169: MS-Windows: unnessary casts and other minor things Problem: MS-Windows: unnessary casts and other minor things. Solution: Clean up the MS-Windows code. (Ken Takata, closes https://github.com/vim/vim/issues/9583)
author Bram Moolenaar <Bram@vim.org>
date Fri, 21 Jan 2022 12:15:03 +0100
parents 6e1b0c4ab668
children 307341b9c227
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')

  " empty name works in legacy script
  call assert_equal('empty', foo#())
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