Class: Test::Unit::UI::Console::ColorizedReadableDiffer

Inherits:
Diff::ReadableDiffer show all
Defined in:
lib/test/unit/ui/console/testrunner.rb

Instance Method Summary collapse

Methods inherited from Diff::ReadableDiffer

#diff

Constructor Details

#initialize(from, to, runner) ⇒ ColorizedReadableDiffer

Returns a new instance of ColorizedReadableDiffer.



461
462
463
464
# File 'lib/test/unit/ui/console/testrunner.rb', line 461

def initialize(from, to, runner)
  @runner = runner
  super(from, to)
end

Instance Method Details

#need_diff?(options = {}) ⇒ Boolean

Returns:

  • (Boolean)


466
467
468
469
470
471
# File 'lib/test/unit/ui/console/testrunner.rb', line 466

def need_diff?(options={})
  operations.each do |tag,|
    return true if [:replace, :equal].include?(tag)
  end
  false
end