class Test::Unit::UI::Console::ColorizedReadableDiffer

Public Class Methods

new(from, to, runner) click to toggle source
# File lib/test/unit/ui/console/testrunner.rb, line 440
def initialize(from, to, runner)
  @runner = runner
  super(from, to)
end

Public Instance Methods

need_diff?(options={}) click to toggle source
# File lib/test/unit/ui/console/testrunner.rb, line 445
def need_diff?(options={})
  operations.each do |tag,|
    return true if [:replace, :equal].include?(tag)
  end
  false
end