Method: ActionView::TestCase::Behavior::ClassMethods#determine_default_helper_class
- Defined in:
- lib/action_view/test_case.rb
#determine_default_helper_class(name) ⇒ Object
67 68 69 70 71 |
# File 'lib/action_view/test_case.rb', line 67 def determine_default_helper_class(name) determine_constant_from_test_name(name) do |constant| Module === constant && !(Class === constant) end end |