class HashCmp

Constants

IGNORED_KEYS

Public Class Methods

new(exp, act) click to toggle source
# File tests/cimi/spec_helper.rb, line 38
def initialize(exp, act)
  @exp = exp
  @act = act
  @io = StringIO.new
end

Public Instance Methods

errors() click to toggle source
# File tests/cimi/spec_helper.rb, line 50
def errors
  @io.string
end
match?() click to toggle source
# File tests/cimi/spec_helper.rb, line 44
def match?
  @equal = true
  compare_values(@exp, @act, [])
  @equal
end