method
helper_method
v6.1.3.1 -
Show latest stable
- Class:
ActionView::TestCase::Behavior::ClassMethods
helper_method(*methods)public
No documentation available.
# File actionview/lib/action_view/test_case.rb, line 74
def helper_method(*methods)
# Almost a duplicate from ActionController::Helpers
methods.flatten.each do |method|
_helpers_for_modification.module_eval def #{method}(*args, &block) # def current_user(*args, &block) _test_case.send(:'#{method}', *args, &block) # _test_case.send(:'current_user', *args, &block) end # end ruby2_keywords(:'#{method}') if respond_to?(:ruby2_keywords, true), __FILE__, __LINE__ + 1
end
end