1
0
Fork 0
mirror of synced 2024-05-28 04:51:12 -04:00
ultimate-vim/sources_non_forked/vim-gitgutter/test/test
Amir Salihefendic 3aefdbd21a Updated plugins
2019-08-22 17:36:17 +02:00

22 lines
496 B
Bash

#!/usr/bin/env bash
VIM="/Applications/MacVim.app/Contents/MacOS/Vim -v"
export VIM_GITGUTTER_TEST=1
$VIM -u NONE -U NONE -N \
--cmd 'set rtp+=../' \
--cmd 'let g:gitgutter_async=0' \
--cmd 'source ../plugin/gitgutter.vim' \
-S runner.vim \
test_*.vim \
"$@"
cat messages.log
grep -q "0 errors, 0 failures" messages.log
status=$?
rm messages.log
exit $status