JezK
Edit File: any_instance_method.rb
require 'mocha/stubbed_method' module Mocha class AnyInstanceMethod < StubbedMethod private def mock_owner stubbee.any_instance end def stubbee_method(method_name) stubbee.instance_method(method_name) end def original_method_owner stubbee end end end