mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 14:50:04 +08:00
14 lines
351 B
VimL
14 lines
351 B
VimL
|
source plugin/jedi.vim
|
||
|
|
||
|
describe 'JediDebugInfo'
|
||
|
it 'works'
|
||
|
redir @a | JediDebugInfo | redir END
|
||
|
let output = split(@a, '\n')
|
||
|
Expect output[0] == 'You should run this in a buffer with filetype "python".'
|
||
|
Expect output[1] == '#### Jedi-vim debug information'
|
||
|
Expect output[-1] == '</details>'
|
||
|
end
|
||
|
end
|
||
|
|
||
|
" vim: et:ts=4:sw=4
|