File: mock.rb

package info (click to toggle)
ruby-bourne 1.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 208 kB
  • ctags: 261
  • sloc: ruby: 1,353; makefile: 5
file content (13 lines) | stat: -rw-r--r-- 400 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'mocha/mock'

module Mocha # :nodoc:
  # Extends #method_missing on Mocha::Mock to record Invocations.
  class Mock # :nodoc:
    alias_method :method_missing_without_invocation, :method_missing

    def method_missing(symbol, *arguments, &block)
      Mockery.instance.invocation(self, symbol, arguments)
      method_missing_without_invocation(symbol, *arguments, &block)
    end
  end
end