File: instance_of.rb

package info (click to toggle)
ruby-mocha 3.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,652 kB
  • sloc: ruby: 12,324; javascript: 499; makefile: 14
file content (53 lines) | stat: -rw-r--r-- 1,443 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# frozen_string_literal: true

require 'mocha/parameter_matchers/base_methods'

module Mocha
  module ParameterMatchers
    module Methods
      # Matches any object that is an instance of +klass+
      #
      # @param [Class] klass expected class.
      # @return [InstanceOf] parameter matcher.
      #
      # @see Expectation#with
      # @see Kernel#instance_of?
      #
      # @example Actual parameter is an instance of +String+.
      #   object = mock()
      #   object.expects(:method_1).with(instance_of(String))
      #   object.method_1('string')
      #   # no error raised
      #
      # @example Actual parameter is not an instance of +String+.
      #   object = mock()
      #   object.expects(:method_1).with(instance_of(String))
      #   object.method_1(99)
      #   # error raised, because method_1 was not called with an instance of String
      def instance_of(klass)
        InstanceOf.new(klass)
      end
    end

    # Parameter matcher which matches when actual parameter is an instance of the specified class.
    class InstanceOf
      include BaseMethods

      # @private
      def initialize(klass)
        @klass = klass
      end

      # @private
      def matches?(available_parameters)
        parameter = available_parameters.shift
        parameter.instance_of?(@klass)
      end

      # @private
      def mocha_inspect
        "instance_of(#{@klass.mocha_inspect})"
      end
    end
  end
end