File: anything.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 (42 lines) | stat: -rw-r--r-- 778 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
require 'mocha/parameter_matchers/base'

module Mocha

  module ParameterMatchers

    # Matches any object.
    #
    # @return [Anything] parameter matcher.
    #
    # @see Expectation#with
    #
    # @example Any object will match.
    #   object = mock()
    #   object.expects(:method_1).with(anything)
    #   object.method_1('foo')
    #   object.method_1(789)
    #   object.method_1(:bar)
    #   # no error raised
    def anything
      Anything.new
    end

    # Parameter matcher which always matches a single parameter.
    class Anything < Base

      # @private
      def matches?(available_parameters)
        available_parameters.shift
        return true
      end

      # @private
      def mocha_inspect
        "anything"
      end

    end

  end

end