Mercurial > vim
view src/testdir/test_eval_stuff.vim @ 13434:8f7f75828bed
Added tag v8.0.1591 for changeset a23300c1c1cf29e636a4a808f5c4392708017468
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 08 Mar 2018 22:15:05 +0100 |
parents | 530943a23d3f |
children | 4a1efd1a6018 |
line wrap: on
line source
" Tests for various eval things. function s:foo() abort try return [] == 0 catch return 1 endtry endfunction func Test_catch_return_with_error() call assert_equal(1, s:foo()) endfunc func Test_nocatch_restore_silent_emsg() silent! try throw 1 catch endtry echoerr 'wrong' let c1 = nr2char(screenchar(&lines, 1)) let c2 = nr2char(screenchar(&lines, 2)) let c3 = nr2char(screenchar(&lines, 3)) let c4 = nr2char(screenchar(&lines, 4)) let c5 = nr2char(screenchar(&lines, 5)) call assert_equal('wrong', c1 . c2 . c3 . c4 . c5) endfunc