class Github::ResponseWrapper
def ==(other)
Compare the wrapper with other wrapper for equality
def ==(other) return false unless other.is_a?(self.class) return false unless (other.respond_to?(:env) && other.respond_to?(:body)) self.env == other.env && self.body == other.body end