Class: Mocha::AnyInstanceMethod

Inherits:
ClassMethod show all
Defined in:
lib/mocha/any_instance_method.rb

Instance Attribute Summary

Attributes inherited from ClassMethod

#method, #stubbee

Instance Method Summary collapse

Methods inherited from ClassMethod

#hidden_method, #initialize, #matches?, #stub, #to_s, #unstub

Constructor Details

This class inherits a constructor from Mocha::ClassMethod

Instance Method Details

#define_new_methodObject



25
26
27
28
29
30
31
# File 'lib/mocha/any_instance_method.rb', line 25

def define_new_method
  stubbee.class_eval(%{
    def #{method}(*args, &block)
      self.class.any_instance.mocha.method_missing(:#{method}, *args, &block)
    end
  }, __FILE__, __LINE__)
end

#hide_original_methodObject



15
16
17
18
19
20
21
22
23
# File 'lib/mocha/any_instance_method.rb', line 15

def hide_original_method
  if method_exists?(method)
    begin
      stubbee.send(:alias_method, hidden_method, method)
    rescue NameError
      # deal with nasties like ActiveRecord::Associations::AssociationProxy
    end
  end
end

#method_exists?(method) ⇒ Boolean

Returns:

  • (Boolean)


48
49
50
51
52
53
# File 'lib/mocha/any_instance_method.rb', line 48

def method_exists?(method)
  return true if stubbee.public_instance_methods(false).include?(method)
  return true if stubbee.protected_instance_methods(false).include?(method)
  return true if stubbee.private_instance_methods(false).include?(method)
  return false
end

#mockObject



7
8
9
# File 'lib/mocha/any_instance_method.rb', line 7

def mock
  stubbee.any_instance.mocha
end

#remove_new_methodObject



33
34
35
# File 'lib/mocha/any_instance_method.rb', line 33

def remove_new_method
  stubbee.send(:remove_method, method)
end

#reset_mochaObject



11
12
13
# File 'lib/mocha/any_instance_method.rb', line 11

def reset_mocha
  stubbee.any_instance.reset_mocha
end

#restore_original_methodObject



37
38
39
40
41
42
43
44
45
46
# File 'lib/mocha/any_instance_method.rb', line 37

def restore_original_method
  if method_exists?(hidden_method)
    begin
      stubbee.send(:alias_method, method, hidden_method)
      stubbee.send(:remove_method, hidden_method)
    rescue NameError
      # deal with nasties like ActiveRecord::Associations::AssociationProxy
    end
  end
end