Sha256: 3b0bbb414450e092df968e9e1334f57d9e6f064f483086ac692ab5c44841c0ca

Contents?: true

Size: 1.67 KB

Versions: 12

Compression:

Stored size: 1.67 KB

Contents

require 'mocha/parameter_matchers/base'
require 'mocha/parameter_matchers/all_of'
require 'mocha/parameter_matchers/has_entry'

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

    # Parameter matcher which matches when actual parameter contains all expected +Hash+ entries.
    class HasEntries < Base
      # @private
      def initialize(entries)
        @entries = entries
      end

      # @private
      def matches?(available_parameters)
        parameter = available_parameters.shift
        has_entry_matchers = @entries.map { |key, value| HasEntry.new(key, value) }
        AllOf.new(*has_entry_matchers).matches?([parameter])
      end

      # @private
      def mocha_inspect
        "has_entries(#{@entries.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_entries.rb
mocha-1.11.0 lib/mocha/parameter_matchers/has_entries.rb
mocha-1.10.2 lib/mocha/parameter_matchers/has_entries.rb
mocha-1.10.1 lib/mocha/parameter_matchers/has_entries.rb
mocha-1.10.0 lib/mocha/parameter_matchers/has_entries.rb
mocha-1.10.0.beta.1 lib/mocha/parameter_matchers/has_entries.rb
mocha-1.10.0.alpha lib/mocha/parameter_matchers/has_entries.rb
mocha-1.9.0 lib/mocha/parameter_matchers/has_entries.rb
cocoapods-dependency-html-0.0.2 vendor/bundle/gems/mocha-1.8.0/lib/mocha/parameter_matchers/has_entries.rb
cocoapods-dependency-html-0.0.1 vendor/bundle/gems/mocha-1.8.0/lib/mocha/parameter_matchers/has_entries.rb
mocha-1.8.0 lib/mocha/parameter_matchers/has_entries.rb
mocha-1.7.0 lib/mocha/parameter_matchers/has_entries.rb