1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 06:30:03 +08:00
SpaceVim/bundle/vimproc.vim/test/functions.vim

11 lines
301 B
VimL
Raw Normal View History

2020-06-14 23:42:40 +08:00
let s:suite = themis#suite('functions')
let s:assert = themis#helper('assert')
function! s:suite.functions() abort
let errmsg_save = v:exception
call s:assert.true(vimproc#kill(9999, 0))
call s:assert.not_equals(errmsg_save, vimproc#get_last_errmsg())
endfunction
" vim:foldmethod=marker:fen: