comparison src/testdir/test_exists.vim @ 19783:546bdeef35f1 v8.2.0448

patch 8.2.0448: various functions not properly tested Commit: https://github.com/vim/vim/commit/0e05de46226eb4e5ea580beefa71831f92d613d3 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Mar 25 22:23:46 2020 +0100 patch 8.2.0448: various functions not properly tested Problem: Various functions not properly tested. Solution: Add more tests, especially for failures. (Yegappan Lakshmanan, closes #5843)
author Bram Moolenaar <Bram@vim.org>
date Wed, 25 Mar 2020 22:30:04 +0100
parents 2f4be7ca1b1b
children 2dc5e6ddeb4c
comparison
equal deleted inserted replaced
19782:e5f4316b01dd 19783:546bdeef35f1
66 call assert_equal(0, exists('+autoprint')) 66 call assert_equal(0, exists('+autoprint'))
67 67
68 " Existing environment variable 68 " Existing environment variable
69 let $EDITOR_NAME = 'Vim Editor' 69 let $EDITOR_NAME = 'Vim Editor'
70 call assert_equal(1, exists('$EDITOR_NAME')) 70 call assert_equal(1, exists('$EDITOR_NAME'))
71 if has('unix')
72 " ${name} environment variables are supported only on Unix-like systems
73 call assert_equal(1, exists('${VIM}'))
74 endif
71 " Non-existing environment variable 75 " Non-existing environment variable
72 call assert_equal(0, exists('$NON_ENV_VAR')) 76 call assert_equal(0, exists('$NON_ENV_VAR'))
73 77
74 " Valid internal function 78 " Valid internal function
75 call assert_equal(1, exists('*bufnr')) 79 call assert_equal(1, exists('*bufnr'))
321 endfunc 325 endfunc
322 326
323 func Test_exists_funcarg() 327 func Test_exists_funcarg()
324 call FuncArg_Tests("arg1", "arg2") 328 call FuncArg_Tests("arg1", "arg2")
325 endfunc 329 endfunc
330
331 " vim: shiftwidth=2 sts=2 expandtab