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.



1692
1693
1694
1695
1696
1697
1698
1699
1700
# File 'lib/test/unit/assertions.rb', line 1692

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)


1687
1688
1689
# File 'lib/test/unit/assertions.rb', line 1687

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

Instance Method Details

#each_pairObject



1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
# File 'lib/test/unit/assertions.rb', line 1725

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



1702
1703
1704
# File 'lib/test/unit/assertions.rb', line 1702

def inspect
  @hash.inspect
end

#pretty_print(q) ⇒ Object



1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
# File 'lib/test/unit/assertions.rb', line 1706

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



1721
1722
1723
# File 'lib/test/unit/assertions.rb', line 1721

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