Sha256: daad2580af60f4c120610677f0e7aaad1e540d3953e62d8cd639dccf1a2b524e

Contents?: true

Size: 1.79 KB

Versions: 12

Compression:

Stored size: 1.79 KB

Contents

# frozen_string_literal: true

module WebMock
  class RequestPatternMatcher

    def initialize
      @request_execution_verifier = RequestExecutionVerifier.new
    end

    def once
      @request_execution_verifier.expected_times_executed = 1
      self
    end

    def twice
      @request_execution_verifier.expected_times_executed = 2
      self
    end

    def times(times)
      @request_execution_verifier.expected_times_executed = times.to_i
      self
    end

    def at_least_once
      @request_execution_verifier.at_least_times_executed = 1
      self
    end

    def at_least_twice
      @request_execution_verifier.at_least_times_executed = 2
      self
    end

    def at_least_times(times)
      @request_execution_verifier.at_least_times_executed = times.to_i
      self
    end

    def at_most_once
      @request_execution_verifier.at_most_times_executed = 1
      self
    end

    def at_most_twice
      @request_execution_verifier.at_most_times_executed = 2
      self
    end

    def at_most_times(times)
      @request_execution_verifier.at_most_times_executed = times.to_i
      self
    end

    def matches?(request_pattern)
      @request_execution_verifier.request_pattern = request_pattern
      @request_execution_verifier.matches?
    end

    def does_not_match?(request_pattern)
      @request_execution_verifier.request_pattern = request_pattern
      @request_execution_verifier.does_not_match?
    end

    def failure_message
      @request_execution_verifier.failure_message
    end

    def failure_message_when_negated
      @request_execution_verifier.failure_message_when_negated
    end

    def description
      @request_execution_verifier.description
    end

    # RSpec 2 compatibility:
    alias_method :negative_failure_message, :failure_message_when_negated
  end
end

Version data entries

12 entries across 12 versions & 3 rubygems

Version Path
webmock-3.24.0 lib/webmock/rspec/matchers/request_pattern_matcher.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/webmock-3.23.1/lib/webmock/rspec/matchers/request_pattern_matcher.rb
webmock-3.23.0 lib/webmock/rspec/matchers/request_pattern_matcher.rb
webmock-3.22.0 lib/webmock/rspec/matchers/request_pattern_matcher.rb
webmock-3.21.2 lib/webmock/rspec/matchers/request_pattern_matcher.rb
webmock-3.21.1 lib/webmock/rspec/matchers/request_pattern_matcher.rb
webmock-3.21.0 lib/webmock/rspec/matchers/request_pattern_matcher.rb
webmock-3.20.0 lib/webmock/rspec/matchers/request_pattern_matcher.rb
honeybadger-5.4.0 vendor/bundle/ruby/3.2.0/gems/webmock-3.19.1/lib/webmock/rspec/matchers/request_pattern_matcher.rb
honeybadger-5.3.0 vendor/bundle/ruby/3.2.0/gems/webmock-3.19.1/lib/webmock/rspec/matchers/request_pattern_matcher.rb
webmock-3.19.1 lib/webmock/rspec/matchers/request_pattern_matcher.rb
webmock-3.19.0 lib/webmock/rspec/matchers/request_pattern_matcher.rb