class WebMock::URIRegexpPattern

Public Instance Methods

matches?(uri) click to toggle source
# File lib/webmock/request_pattern.rb, line 109
def matches?(uri)
  WebMock::Util::URI.variations_of_uri_as_strings(uri).any? { |u| u.match(@pattern) } &&
    (@query_params.nil? || @query_params == uri.query_values)
end
to_s() click to toggle source
# File lib/webmock/request_pattern.rb, line 114
def to_s
  str = @pattern.inspect
  str += " with query params #{@query_params.inspect}" if @query_params
  str
end