method

make_test_case_available_to_view!

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