Mocha 0.4 mixes in more public instance methods, confusing controller identification of action methods. Closes #7347.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6030 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper 2007-01-24 12:04:08 +00:00
parent f08bd27398
commit 7fce529b2a
1 changed files with 8 additions and 10 deletions

View File

@ -84,14 +84,12 @@ class ControllerInstanceTests < Test::Unit::TestCase
end
protected
# Mocha adds methods to Object which are then included in the public_instance_methods
# This method hides those from the controller so the above tests won't know the difference
# Mocha adds some public instance methods to Object that would be
# considered actions, so explicitly hide_action them.
def hide_mocha_methods_from_controller(controller)
mocha_methods = [:expects, :metaclass, :mocha, :mocha_inspect, :reset_mocha, :stubba_object, :stubba_method, :stubs, :verify]
mocha_methods = [:expects, :metaclass, :mocha, :mocha_inspect, :reset_mocha, :stubba_object, :stubba_method, :stubs, :verify, :__metaclass__, :__is_a__]
controller.class.send(:hide_action, *mocha_methods)
end
end