X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/8f402f6e0e976765d3889a23bc29699e8fd96b63..2ce54215a99b0a31154a468ad0aa56974c6fbefc:/.vim/bundle/vim-markdown/test/run-tests.sh diff --git a/.vim/bundle/vim-markdown/test/run-tests.sh b/.vim/bundle/vim-markdown/test/run-tests.sh new file mode 100755 index 0000000..5c9db06 --- /dev/null +++ b/.vim/bundle/vim-markdown/test/run-tests.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env bash + +# Exit on error. +set -e + +cd "$( dirname "${BASH_SOURCE[0]}" )" + +for dep in ../build/tabular ../build/vim-toml ../build/vim-json ../build/vader.vim; do + if [[ ! -d $dep ]]; then + echo "Missing dependency: $dep" + echo "You may just want to use 'make test'." + exit 1 + fi +done + +vim -Nu vimrc -c 'Vader! *' > /dev/null