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

23 lines
635 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
2016-03-03 11:43:57 +00:00
setfiletype ruby | Repl | new
setfiletype haskell | Repl | new
setfiletype erlang | Repl | new
setfiletype python | Repl | new
setfiletype javascript | Repl | new
setfiletype clojure | Repl | new
2016-06-12 00:40:21 +01:00
setfiletype idris | Repl | new
2018-11-18 22:33:32 +00:00
setfiletype swiprolog | 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