mirror of
https://github.com/airblade/vim-gitgutter.git
synced 2025-11-11 13:03:45 -05:00
14 lines
239 B
Bash
Executable File
14 lines
239 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
rm -f *.out
|
|
|
|
# Run the tests.
|
|
vim -N -u NONE -S test.vim
|
|
|
|
# Verify the outputs.
|
|
for expected in *.ok; do
|
|
name=${expected%.*}
|
|
actual=$name.out
|
|
diff $expected $actual && echo "$name ok" || echo "$name failed"
|
|
done
|