module WebMock::Matchers

Public Instance Methods

have_been_made() click to toggle source
# File lib/webmock/rspec/matchers.rb, line 9
def have_been_made
  WebMock::RequestPatternMatcher.new
end
have_been_requested() click to toggle source
# File lib/webmock/rspec/matchers.rb, line 13
def have_been_requested
  WebMock::RequestPatternMatcher.new
end
have_not_been_made() click to toggle source
# File lib/webmock/rspec/matchers.rb, line 17
def have_not_been_made
  WebMock::RequestPatternMatcher.new.times(0)
end
have_not_requested(method, uri) click to toggle source
# File lib/webmock/rspec/matchers.rb, line 25
def have_not_requested(method, uri)
  WebMock::WebMockMatcher.new(method, uri).times(0)
end
have_requested(method, uri) click to toggle source
# File lib/webmock/rspec/matchers.rb, line 21
def have_requested(method, uri)
  WebMock::WebMockMatcher.new(method, uri)
end