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



2193
2194
2195
2196
2197
2198
2199
2200
2201
# File 'lib/test/unit/assertions.rb', line 2193

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



2188
2189
2190
# File 'lib/test/unit/assertions.rb', line 2188

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

Instance Method Details

#each_pairObject



2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
# File 'lib/test/unit/assertions.rb', line 2226

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



2203
2204
2205
# File 'lib/test/unit/assertions.rb', line 2203

def inspect
  @hash.inspect
end

#pretty_print(q) ⇒ Object



2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
# File 'lib/test/unit/assertions.rb', line 2207

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



2222
2223
2224
# File 'lib/test/unit/assertions.rb', line 2222

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