module ActionView::TestCase::Behavior::ClassMethods

def determine_default_helper_class(name)

def determine_default_helper_class(name)
  determine_constant_from_test_name(name) do |constant|
    Module === constant && !(Class === constant)
  end
end

def helper_class

def helper_class
  @helper_class ||= determine_default_helper_class(name)
end

def helper_method(*methods)

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}')
    end_eval
  end
end

def include_helper_modules!

def include_helper_modules!
  helper(helper_class) if helper_class
  include _helpers
end

def new(*)

def new(*)
  include_helper_modules!
  super
end

def tests(helper_class)

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