testing completion disabling

This commit is contained in:
David Halter
2013-08-24 21:21:00 +04:30
parent 9d2259a63d
commit 6c9b115661

View File

@@ -0,0 +1,21 @@
let g:jedi#completions_command = 'X'
let g:jedi#completions_enabled = 0
source plugin/jedi.vim
describe 'completions_disabled'
before
new
set filetype=python
end
after
bd!
end
it 'typing'
normal oraise ImportErrX
Expect getline('.') == 'raise ImportErrX'
end
end
" vim: et:ts=4:sw=4