view src/testdir/test_autoload.vim @ 28650:be4410fa2bac v8.2.4849

patch 8.2.4849: Gleam filetype not detected Commit: https://github.com/vim/vim/commit/917c32c4f75351061a773cd5bc5b6f42c7d10e62 Author: Mathias Jean Johansen <mathias@mjj.io> Date: Sat Apr 30 15:10:07 2022 +0100 patch 8.2.4849: Gleam filetype not detected Problem: Gleam filetype not detected. Solution: Add a pattern for Gleam files. (Mathias Jean Johansen, closes #10326)
author Bram Moolenaar <Bram@vim.org>
date Sat, 30 Apr 2022 16:15:04 +0200
parents 307341b9c227
children a786d0dab454
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