class WebMock::URIStringPattern
Public Instance Methods
add_query_params(query_params)
click to toggle source
Calls superclass method
WebMock::URIPattern#add_query_params
# File lib/webmock/request_pattern.rb, line 205 def add_query_params(query_params) super if @query_params.is_a?(Hash) || @query_params.is_a?(String) query_hash = (WebMock::Util::QueryMapper.query_to_values(@pattern.query, notation: Config.instance.query_values_notation) || {}).merge(@query_params) @pattern.query = WebMock::Util::QueryMapper.values_to_query(query_hash, notation: WebMock::Config.instance.query_values_notation) @query_params = nil end end
matches?(uri)
click to toggle source
# File lib/webmock/request_pattern.rb, line 192 def matches?(uri) if @pattern.is_a?(Addressable::URI) if @query_params uri.omit(:query) === @pattern && (@query_params.nil? || @query_params == WebMock::Util::QueryMapper.query_to_values(uri.query, notation: Config.instance.query_values_notation)) else uri === @pattern end else false end end
to_s()
click to toggle source
# File lib/webmock/request_pattern.rb, line 214 def to_s str = WebMock::Util::URI.strip_default_port_from_uri_string(@pattern.to_s) str += " with query params #{@query_params.inspect}" if @query_params str end