Sha256: 5d81ce1dde890edf4426e251fe42643c92f93c33894f20c290ab7c13ed6cca3b
Contents?: true
Size: 601 Bytes
Versions: 189
Compression:
Stored size: 601 Bytes
Contents
require 'webmock' require 'webmock/rspec/matchers/request_pattern_matcher' require 'webmock/rspec/matchers/webmock_matcher' module WebMock module Matchers def have_been_made WebMock::RequestPatternMatcher.new end def have_been_requested WebMock::RequestPatternMatcher.new end def have_not_been_made WebMock::RequestPatternMatcher.new.times(0) end def have_requested(method, uri) WebMock::WebMockMatcher.new(method, uri) end def have_not_requested(method, uri) WebMock::WebMockMatcher.new(method, uri).times(0) end end end
Version data entries
189 entries across 180 versions & 12 rubygems