class Test::Unit::Util::ProcWrapper

def ==(other)

def ==(other)
  case(other)
  when ProcWrapper
    return @a_proc == other.to_proc
  else
    return super
  end
end