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
2016-03-03 20:43:57 +09:00

21 lines
559 B
VimL

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
setfiletype clojure | Repl | new
" repl.vim cannot open repl
" but repl.vim don't throw some exception
setfiletype unknown | Repl
endfunction