1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 05:20:04 +08:00
SpaceVim/bundle/vimproc.vim/test/functions.vim
2020-06-14 23:42:40 +08:00

11 lines
301 B
VimL

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: