forked from Baguette/tap-aggregator
Minor UI improvement.
This commit is contained in:
parent
737f34eb55
commit
6f91055f11
@ -155,7 +155,12 @@ when "show"
|
||||
# This prints a single TAP test entry.
|
||||
STDOUT << " -> "
|
||||
STDOUT << ("%3s" % test.id).colorize(:cyan)
|
||||
|
||||
if test.status.ok?
|
||||
STDOUT << (" %6s " % test.status.to_s).colorize(:green)
|
||||
else
|
||||
STDOUT << (" %6s " % test.status.to_s).colorize(:red)
|
||||
end
|
||||
STDOUT << test.title.colorize(:white)
|
||||
STDOUT << "\n"
|
||||
STDOUT.flush
|
||||
|
Loading…
Reference in New Issue
Block a user