vim-patch:8.0.1689: no tests for xxd

Problem:    No tests for xxd.
Solution:   Add a test. (Christian Brabandt)
29f9ed20b4
This commit is contained in:
Jan Edmund Lazo 2019-06-11 22:31:12 -04:00
parent f8d0e41b28
commit 005316ae41

View File

@ -200,7 +200,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