0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

patch 8.2.0203: :helptags and some other functionality not tested

Problem:    :helptags and some other functionality not tested.
Solution:   Add more tests. (Yegappan Lakshmanan, closes #5567)
This commit is contained in:
Bram Moolenaar
2020-02-03 21:40:04 +01:00
parent e7ddf4e337
commit e20b9ececa
9 changed files with 181 additions and 1 deletions

View File

@@ -60,5 +60,9 @@ func Test_compiler_completion()
endfunc
func Test_compiler_error()
let g:current_compiler = 'abc'
call assert_fails('compiler doesnotexist', 'E666:')
call assert_equal('abc', g:current_compiler)
call assert_fails('compiler! doesnotexist', 'E666:')
unlet! g:current_compiler
endfunc