Files

WebMock::Matchers

Public Instance Methods

have_been_made() click to toggle source
   # File lib/webmock/adapters/rspec/matchers.rb, line 3
3:     def have_been_made
4:       WebMock::RequestPatternMatcher.new
5:     end
have_not_been_made() click to toggle source
   # File lib/webmock/adapters/rspec/matchers.rb, line 7
7:     def have_not_been_made
8:       WebMock::RequestPatternMatcher.new.times(0)
9:     end
have_not_requested(method, uri) click to toggle source
    # File lib/webmock/adapters/rspec/matchers.rb, line 15
15:     def have_not_requested(method, uri)
16:       WebMock::WebMockMatcher.new(method, uri).times(0)
17:     end
have_requested(method, uri) click to toggle source
    # File lib/webmock/adapters/rspec/matchers.rb, line 11
11:     def have_requested(method, uri)
12:       WebMock::WebMockMatcher.new(method, uri)
13:     end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.