In Files

  • test-unit-3.3.7/lib/test/unit/assertions.rb

Class/Module Index [+]

Quicksearch

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

Public Class Methods

new(hash, inspected_objects) click to toggle source
 
               # File test-unit-3.3.7/lib/test/unit/assertions.rb, line 1912
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
            
target?(object) click to toggle source
 
               # File test-unit-3.3.7/lib/test/unit/assertions.rb, line 1907
def target?(object)
  object.is_a?(Hash) or ENV.equal?(object)
end
            

Public Instance Methods

each_pair() click to toggle source
 
               # File test-unit-3.3.7/lib/test/unit/assertions.rb, line 1945
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
            
inspect() click to toggle source
 
               # File test-unit-3.3.7/lib/test/unit/assertions.rb, line 1922
def inspect
  @hash.inspect
end
            
pretty_print(q) click to toggle source
 
               # File test-unit-3.3.7/lib/test/unit/assertions.rb, line 1926
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) click to toggle source
 
               # File test-unit-3.3.7/lib/test/unit/assertions.rb, line 1941
def pretty_print_cycle(q)
  @hash.pretty_print_cycle(q)
end