1
0
forked from aniani/vim

patch 8.0.1689: no tests for xxd

Problem:    No tests for xxd.
Solution:   Add a test. (Christian Brabandt)
This commit is contained in:
Bram Moolenaar
2018-04-10 19:20:31 +02:00
parent 6f4700233f
commit 29f9ed20b4
6 changed files with 107 additions and 1 deletions

View File

@@ -199,7 +199,11 @@ func FinishTesting()
write
endif
let message = 'Executed ' . s:done . (s:done > 1 ? ' tests' : ' test')
if s:done == 0
let message = 'NO tests executed'
else
let message = 'Executed ' . s:done . (s:done > 1 ? ' tests' : ' test')
endif
echo message
call add(s:messages, message)
if s:fail > 0