class HTTP::Request::Body

def ==(other)

Request bodies are equivalent when they have the same source.
def ==(other)
  self.class == other.class && self.source == other.source # rubocop:disable Style/RedundantSelf
end