class WebMock::URIAddressablePattern

def pattern_matches?(uri)

def pattern_matches?(uri)
  if @query_params.nil?
    # Let Addressable check the whole URI
    matches_with_variations?(uri)
  else
    # WebMock checks the query, Addressable checks everything else
    matches_with_variations?(uri.omit(:query))
  end
end