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-1.6.0 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-1.5.0 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-1.4.0 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-1.3.0 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-1.2.1 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-1.2.0 lib/mocha/parameter_matchers/regexp_matches.rb
apl-library-0.0.90 vendor/bundle/ruby/1.9.1/gems/mocha-1.0.0/lib/mocha/parameter_matchers/regexp_matches.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/mocha-1.0.0/lib/mocha/parameter_matchers/regexp_matches.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.9.1/gems/mocha-1.0.0/lib/mocha/parameter_matchers/regexp_matches.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/2.1.0/gems/mocha-1.0.0/lib/mocha/parameter_matchers/regexp_matches.rb
mocha-1.1.0 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-1.0.0 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-1.0.0.alpha lib/mocha/parameter_matchers/regexp_matches.rb
tnargav-1.3.3 vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/regexp_matches.rb
challah-1.0.0 vendor/bundle/gems/mocha-0.14.0/lib/mocha/parameter_matchers/regexp_matches.rb
tnargav-1.2.3 vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/regexp_matches.rb
mocha-0.14.0 lib/mocha/parameter_matchers/regexp_matches.rb
challah-1.0.0.beta3 vendor/bundle/gems/mocha-0.13.3/lib/mocha/parameter_matchers/regexp_matches.rb
mocha-0.14.0.alpha lib/mocha/parameter_matchers/regexp_matches.rb
challah-1.0.0.beta2 vendor/bundle/gems/mocha-0.13.3/lib/mocha/parameter_matchers/regexp_matches.rb