class Mocha::StubbedMethod

def matches?(other)

def matches?(other)
  return false unless other.class == self.class
  (stubbee.object_id == other.stubbee.object_id) && (method_name == other.method_name)
end