method

make_test_case_available_to_view!

rails latest stable - Class: ActionView::TestCase

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.3.8) is shown here.

make_test_case_available_to_view!()
private

No documentation available.

# File actionpack/lib/action_view/test_case.rb, line 111
      def make_test_case_available_to_view!
        test_case_instance = self
        master_helper_module.module_eval do
          define_method(:_test_case) { test_case_instance }
          private :_test_case
        end
      end