Sha256: a2dc2e100f207dfd9fa59607b0254a76a1f67d57a32f8d79aa9339b5d8bcc771

Contents?: true

Size: 1.07 KB

Versions: 44

Compression:

Stored size: 1.07 KB

Contents

require 'mocha/parameter_matchers/base'

module Mocha
  
  module ParameterMatchers

    # :call-seq: regexp_matches(regular_expression) -> parameter_matcher
    #
    # Matches any object that matches +regular_expression+.
    #   object = mock()
    #   object.expects(:method_1).with(regexp_matches(/e/))
    #   object.method_1('hello')
    #   # no error raised
    #
    #   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

    class RegexpMatches < Base # :nodoc:
  
      def initialize(regexp)
        @regexp = regexp
      end
  
      def matches?(available_parameters)
        parameter = available_parameters.shift
        return false unless parameter.respond_to?(:=~)
        parameter =~ @regexp
      end
  
      def mocha_inspect
        "regexp_matches(#{@regexp.mocha_inspect})"
      end
  
    end
    
  end
  
end

Version data entries

44 entries across 39 versions & 7 rubygems

Version Path
challah-0.4.1 vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/regexp_matches.rb
challah-0.4.0 vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/regexp_matches.rb
challah-0.3.5 vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/regexp_matches.rb
challah-0.3.4 vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/regexp_matches.rb
challah-0.3.3 vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/regexp_matches.rb
challah-0.3.2 vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/regexp_matches.rb
challah-0.3.1 vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/regexp_matches.rb
challah-0.3.0 vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/regexp_matches.rb
challah-0.2.1 vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/regexp_matches.rb
challah-0.2.0 vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/regexp_matches.rb
mocha-0.10.3 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-0.10.2 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-0.10.1 lib/mocha/parameter_matchers/regexp_matches.rb
vanity-1.7.1 vendor/ruby/1.9.1/gems/mocha-0.9.12/lib/mocha/parameter_matchers/regexp_matches.rb
mocha-0.10.0 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-0.9.12 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-0.9.11 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-0.9.10 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-macruby-0.9.9.20101102121900 lib/mocha/parameter_matchers/regexp_matches.rb
mocha-0.9.9 lib/mocha/parameter_matchers/regexp_matches.rb