Module: ActionView::TestCase::Behavior::ClassMethods
- Defined in:
- lib/action_view/test_case.rb
Instance Attribute Summary collapse
Instance Method Summary collapse
- #determine_default_helper_class(name) ⇒ Object
- #helper_method(*methods) ⇒ Object
- #new ⇒ Object
- #tests(helper_class) ⇒ Object
Instance Attribute Details
#helper_class ⇒ Object
88 89 90 |
# File 'lib/action_view/test_case.rb', line 88 def helper_class @helper_class ||= determine_default_helper_class(name) end |
Instance Method Details
#determine_default_helper_class(name) ⇒ Object
68 69 70 71 72 |
# File 'lib/action_view/test_case.rb', line 68 def determine_default_helper_class(name) determine_constant_from_test_name(name) do |constant| Module === constant && !(Class === constant) end end |
#helper_method(*methods) ⇒ Object
74 75 76 77 78 79 80 81 82 83 84 |
# File '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 <<-end_eval, __FILE__, __LINE__ + 1 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) end_eval end end |
#new ⇒ Object
92 93 94 95 |
# File 'lib/action_view/test_case.rb', line 92 def new(*) include_helper_modules! super end |
#tests(helper_class) ⇒ Object
59 60 61 62 63 64 65 66 |
# File 'lib/action_view/test_case.rb', line 59 def tests(helper_class) case helper_class when String, Symbol self.helper_class = "#{helper_class.to_s.underscore}_helper".camelize.safe_constantize when Module self.helper_class = helper_class end end |