Sha256: d0d1a072eb3f8d338cd7230037eca3749a764ee1944c1c4a5f0195cd06a97a58

Contents?: true

Size: 1.39 KB

Versions: 42

Compression:

Stored size: 1.39 KB

Contents

require 'mocha/parameter_matchers/base'

module Mocha
  module ParameterMatchers
    # Matches any object that matches +regexp+.
    #
    # @param [Regexp] regexp regular expression to match.
    # @return [RegexpMatches] parameter matcher.
    #
    # @see Expectation#with
    #
    # @example Actual parameter is matched by specified regular expression.
    #   object = mock()
    #   object.expects(:method_1).with(regexp_matches(/e/))
    #   object.method_1('hello')
    #   # no error raised
    #
    # @example Actual parameter is not matched by specified regular expression.
    #   object = mock()
    #   object.expects(:method_1).with(regexp_matches(/a/))
    #   object.method_1('hello')
    #   # error raised, because method_1 was not called with a parameter that matched the
    #   # regular expression
    def regexp_matches(regexp)
      RegexpMatches.new(regexp)
    end

    # Parameter matcher which matches if specified regular expression matches actual paramter.
    class RegexpMatches < Base
      # @private
      def initialize(regexp)
        @regexp = regexp
      end

      # @private
      def matches?(available_parameters)
        parameter = available_parameters.shift
        return false unless parameter.respond_to?(:=~)
        parameter =~ @regexp
      end

      # @private
      def mocha_inspect
        "regexp_matches(#{@regexp.mocha_inspect})"
      end
    end
  end
end

Version data entries

42 entries across 42 versions & 4 rubygems

Version Path
tailscale_middleware-0.0.3 vendor/cache/ruby/3.4.0/gems/mocha-2.7.1/lib/mocha/parameter_matchers/regexp_matches.rb
mocha-2.7.1 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-2.7.0 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-2.6.1 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-2.6.0 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-2.5.0 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-2.4.5 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-2.4.4 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-2.4.3 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-2.4.2 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-2.4.1 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-2.4.0 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-2.2.0 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-2.1.0 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-2.0.4 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-2.0.3 lib/mocha/parameter_matchers/regexp_matches.rb
fluent-plugin-google-cloud-logging-on-prem-0.1.0 vendor/ruby/3.1.0/gems/mocha-2.0.2/lib/mocha/parameter_matchers/regexp_matches.rb
mocha-2.0.2 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-1.16.1 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-1.15.1 lib/mocha/parameter_matchers/regexp_matches.rb