Files
jedi-vim/test/completions.vim
2013-08-28 17:46:12 +04:30

41 lines
848 B
VimL

let g:jedi#completions_command = 'X'
source plugin/jedi.vim
describe 'completions'
before
new
set filetype=python
end
after
bd!
end
it 'import'
" X is the completion command
normal oimporX
Expect getline('.') == 'import'
normal a subproX
Expect getline('.') == 'import subprocess'
end
it 'exception'
normal oIndentationErrX
Expect getline('.') == 'IndentationError'
normal a().filenaX
Expect getline('.') == 'IndentationError().filename'
end
it 'typing'
normal oraisX ImpXErrX()
Expect getline('.') == 'raise ImportError()'
end
it 'cycling through entries'
execute "normal oimpX\<C-n>\<C-n>\<C-n>"
Expect getline('.') == 'ImportWarning'
end
end
" vim: et:ts=4:sw=4