Class: Test::Unit::Assertions::AssertionMessage::HashInspector

Inherits:
Object
  • Object
show all
Defined in:
lib/test/unit/assertions.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(hash, inspected_objects) ⇒ HashInspector

Returns a new instance of HashInspector.



1585
1586
1587
1588
1589
1590
1591
1592
1593
# File 'lib/test/unit/assertions.rb', line 1585

def initialize(hash, inspected_objects)
  @inspected_objects = inspected_objects
  @hash = {}
  hash.each do |key, value|
    key = Inspector.cached_new(key, @inspected_objects)
    value = Inspector.cached_new(value, @inspected_objects)
    @hash[key] = value
  end
end

Class Method Details

.target?(object) ⇒ Boolean

Returns:

  • (Boolean)


1580
1581
1582
# File 'lib/test/unit/assertions.rb', line 1580

def target?(object)
  object.is_a?(Hash) or object == ENV
end

Instance Method Details

#each_pairObject



1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
# File 'lib/test/unit/assertions.rb', line 1618

def each_pair
  keys = @hash.keys
  begin
    keys = keys.sort # FIXME: more cleverly
  rescue ArgumentError
  end
  keys.each do |key|
    yield(key, @hash[key])
  end
end

#inspectObject



1595
1596
1597
# File 'lib/test/unit/assertions.rb', line 1595

def inspect
  @hash.inspect
end

#pretty_print(q) ⇒ Object



1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
# File 'lib/test/unit/assertions.rb', line 1599

def pretty_print(q)
  q.group(1, '{', '}') do
    q.seplist(self, nil, :each_pair) do |k, v|
      q.group do
        q.pp(k)
        q.text('=>')
        q.group(1) do
          q.breakable('')
          q.pp(v)
        end
      end
    end
  end
end

#pretty_print_cycle(q) ⇒ Object



1614
1615
1616
# File 'lib/test/unit/assertions.rb', line 1614

def pretty_print_cycle(q)
  @hash.pretty_print_cycle(q)
end