File: equals.rb

package info (click to toggle)
ruby-mocha 0.11.3-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,300 kB
  • sloc: ruby: 9,935; makefile: 2
file content (53 lines) | stat: -rw-r--r-- 1,216 bytes parent folder | download | duplicates (3)
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
require 'mocha/parameter_matchers/base'

module Mocha

  module ParameterMatchers

    # Matches any +Object+ equalling +value+.
    #
    # @param [Object] value expected value.
    # @return [Equals] parameter matcher.
    #
    # @see Expectation#with
    # @see Object#==
    #
    # @example Actual parameter equals expected parameter.
    #   object = mock()
    #   object.expects(:method_1).with(equals(2))
    #   object.method_1(2)
    #   # no error raised
    #
    # @example Actual parameter does not equal expected parameter.
    #   object = mock()
    #   object.expects(:method_1).with(equals(2))
    #   object.method_1(3)
    #   # error raised, because method_1 was not called with an +Object+ that equals 3
    def equals(value)
      Equals.new(value)
    end

    # Parameter matcher which matches when actual parameter equals expected value.
    class Equals < Base

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

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

      # @private
      def mocha_inspect
        @value.mocha_inspect
      end

    end

  end

end