This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
repl.vim/test/repl_vim.vim

20 lines
510 B
VimL
Raw Normal View History

2016-01-24 13:20:15 +00:00
let s:suite = themis#suite('repl_vim')
function! s:suite.after_each()
call ResetVariables()
endfunction
"-------------------"
function! s:suite.do_not_throw_exception_when_open_repl()
" repl.vim can open repl
setfiletype ruby | Repl | new
setfiletype haskell | Repl | new
setfiletype erlang | Repl | new
setfiletype python | Repl | new
setfiletype javascript | Repl | new
2016-01-24 13:20:15 +00:00
" repl.vim cannot open repl
" but repl.vim don't throw some exception
setfiletype unknown | Repl
endfunction