Method: Minitest::PrideIO#print

Defined in:
lib/minitest/pride_plugin.rb

Wrap print to colorize the output.

[View source]

60
61
62
63
64
65
66
67
68
69
# File 'lib/minitest/pride_plugin.rb', line 60

def print o
  case o
  when ".", "S" then
    io.print pride o
  when "E", "F" then
    io.print "#{ESC}41m#{ESC}37m#{o}#{NND}"
  else
    io.print o
  end
end