instance method
determine_default_helper_class
Ruby on Rails 7.2.3
Since v3.0.20Signature
determine_default_helper_class(name)
No documentation comment.
Parameters
-
namereq
Source
# File actionview/lib/action_view/test_case.rb, line 164
def determine_default_helper_class(name)
determine_constant_from_test_name(name) do |constant|
Module === constant && !(Class === constant)
end
end
Defined in actionview/lib/action_view/test_case.rb line 164
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::TestCase::Behavior::ClassMethods