aboutsummaryrefslogtreecommitdiff
path: root/vim/bundle/vim-snipmate/t/tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'vim/bundle/vim-snipmate/t/tests.sh')
-rwxr-xr-xvim/bundle/vim-snipmate/t/tests.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/vim/bundle/vim-snipmate/t/tests.sh b/vim/bundle/vim-snipmate/t/tests.sh
new file mode 100755
index 0000000..c1da250
--- /dev/null
+++ b/vim/bundle/vim-snipmate/t/tests.sh
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+tmp="$(mktemp || tmpfile)"
+vim -Es $tmp <<- EOF
+ source ~/.vimrc
+ %delete _
+ call append(0, split(&rtp, ','))
+ delete _
+ wq
+EOF
+
+rtp="$(grep -iE 'vspec|snipmate|tlib|mw-utils' < $tmp | grep -v after)"
+vspec="$(grep -iE 'vspec' < $tmp | grep -v after)"
+test_files="${*:-parser jumping}"
+
+for test in $test_files; do
+ $vspec/bin/vspec $rtp ${test%%.vim}.vim
+done
+
+rm $tmp