class Typhoeus::Request

def eql?(other)

Other tags:
    Api: - private

Returns:
  • (Boolean) - Returns true if equals, else false.

Parameters:
  • other (Object) -- The object to check.

Other tags:
    Example: Are request equal? -
def eql?(other)
  self.class == other.class &&
    self.url == other.url &&
    fuzzy_hash_eql?(self.options, other.options)
end