forked from aniani/vim
Problem: No tests for indent files.
Solution: Add a mechanism for running indent file tests. Add a first test
for Vim indenting.
7 lines
160 B
VimL
7 lines
160 B
VimL
" Deletes all the test output files: *.fail and *.out
|
|
for fname in glob('testdir/*.out', 1, 1) + glob('testdir/*.fail', 1, 1)
|
|
call delete(fname)
|
|
endfor
|
|
|
|
quit
|