Sha256: 0467161a3657d416aa2989642386b71451b161e77e2a5110c6e45745179ad986

Contents?: true

Size: 1.42 KB

Versions: 12

Compression:

Stored size: 1.42 KB

Contents

require 'mocha/parameter_matchers/base'

module Mocha
  module ParameterMatchers
    # Matches +Hash+ containing +key+.
    #
    # @param [Object] key expected key.
    # @return [HasKey] parameter matcher.
    #
    # @see Expectation#with
    #
    # @example Actual parameter contains entry with expected key.
    #   object = mock()
    #   object.expects(:method_1).with(has_key('key_1'))
    #   object.method_1('key_1' => 1, 'key_2' => 2)
    #   # no error raised
    #
    # @example Actual parameter does not contain entry with expected key.
    #   object = mock()
    #   object.expects(:method_1).with(has_key('key_1'))
    #   object.method_1('key_2' => 2)
    #   # error raised, because method_1 was not called with Hash containing key: 'key_1'
    # rubocop:disable Naming/PredicateName
    def has_key(key)
      HasKey.new(key)
    end
    # rubocop:enable Naming/PredicateName

    # Parameter matcher which matches when actual parameter contains +Hash+ entry with expected key.
    class HasKey < Base
      # @private
      def initialize(key)
        @key = key
      end

      # @private
      def matches?(available_parameters)
        parameter = available_parameters.shift
        return false unless parameter.respond_to?(:keys)
        parameter.keys.any? { |key| @key.to_matcher.matches?([key]) }
      end

      # @private
      def mocha_inspect
        "has_key(#{@key.mocha_inspect})"
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
mocha-1.11.1 lib/mocha/parameter_matchers/has_key.rb
mocha-1.11.0 lib/mocha/parameter_matchers/has_key.rb
mocha-1.10.2 lib/mocha/parameter_matchers/has_key.rb
mocha-1.10.1 lib/mocha/parameter_matchers/has_key.rb
mocha-1.10.0 lib/mocha/parameter_matchers/has_key.rb
mocha-1.10.0.beta.1 lib/mocha/parameter_matchers/has_key.rb
mocha-1.10.0.alpha lib/mocha/parameter_matchers/has_key.rb
mocha-1.9.0 lib/mocha/parameter_matchers/has_key.rb
cocoapods-dependency-html-0.0.2 vendor/bundle/gems/mocha-1.8.0/lib/mocha/parameter_matchers/has_key.rb
cocoapods-dependency-html-0.0.1 vendor/bundle/gems/mocha-1.8.0/lib/mocha/parameter_matchers/has_key.rb
mocha-1.8.0 lib/mocha/parameter_matchers/has_key.rb
mocha-1.7.0 lib/mocha/parameter_matchers/has_key.rb