Class: Qunit::Logger

Inherits:
Object
  • Object
show all
Defined in:
lib/qunit/logger.rb

Class Method Summary collapse

Class Method Details



6
7
8
# File 'lib/qunit/logger.rb', line 6

def print(message, color = nil)
  Kernel.print apply_color(message, color)
end

.puts(message, color = nil) ⇒ Object



10
11
12
# File 'lib/qunit/logger.rb', line 10

def puts(message, color = nil)
  Kernel.puts apply_color(message, color)
end