Sha256: 5ce808f3efd69d6869824ba1d8e86d99b69b256d476e3169aeff181f65a068f8

Contents?: true

Size: 1.4 KB

Versions: 61

Compression:

Stored size: 1.4 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

61 entries across 50 versions & 5 rubygems

Version Path
mocha-0.12.4 lib/mocha/parameter_matchers/regexp_matches.rb
challah-rolls-0.1.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/mocha-0.12.2/lib/mocha/parameter_matchers/regexp_matches.rb
challah-rolls-0.1.0 vendor/bundle/gems/mocha-0.12.3/lib/mocha/parameter_matchers/regexp_matches.rb
challah-rolls-0.1.0 vendor/bundle/gems/mocha-0.12.2/lib/mocha/parameter_matchers/regexp_matches.rb
challah-0.8.0.pre vendor/bundle/gems/mocha-0.12.2/lib/mocha/parameter_matchers/regexp_matches.rb
challah-0.7.1 vendor/bundle/gems/mocha-0.12.2/lib/mocha/parameter_matchers/regexp_matches.rb
challah-0.7.0 vendor/bundle/gems/mocha-0.12.2/lib/mocha/parameter_matchers/regexp_matches.rb
challah-0.7.0.pre2 vendor/bundle/gems/mocha-0.12.2/lib/mocha/parameter_matchers/regexp_matches.rb
mocha-0.12.3 lib/mocha/parameter_matchers/regexp_matches.rb
challah-0.7.0.pre vendor/bundle/gems/mocha-0.12.2/lib/mocha/parameter_matchers/regexp_matches.rb
mocha-0.12.2 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-0.12.1 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-0.12.0 lib/mocha/parameter_matchers/regexp_matches.rb
challah-0.6.2 vendor/bundle/gems/mocha-0.11.4/lib/mocha/parameter_matchers/regexp_matches.rb
challah-0.6.1 vendor/bundle/gems/mocha-0.11.4/lib/mocha/parameter_matchers/regexp_matches.rb
challah-0.6.0 vendor/bundle/gems/mocha-0.11.4/lib/mocha/parameter_matchers/regexp_matches.rb
mocha-0.11.4 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-0.11.3 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-0.11.2 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-0.11.1 lib/mocha/parameter_matchers/regexp_matches.rb