1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 05:40:05 +08:00
SpaceVim/bundle/vim-mundo/tests/run-tests.sh
2020-10-31 15:52:34 +08:00

14 lines
162 B
Bash
Vendored

#!/usr/bin/env bash
set -e
if [[ $# -eq 0 ]]
then
TESTS="`ls *.vim | tr "\n" ' '`"
else
IFS=' '
TESTS="$*"
fi
vim -u vimrc_test -c ":UTRun $TESTS"