method

set_test_assigns

rails latest stable - Class: ActionController::ProcessWithTest

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.

set_test_assigns()
private

No documentation available.

# File actionpack/lib/action_controller/test_process.rb, line 571
      def set_test_assigns
        @assigns = {}
        (instance_variable_names - self.class.protected_instance_variables).each do |var|
          name, value = var[1..-1], instance_variable_get(var)
          @assigns[name] = value
          response.template.assigns[name] = value if response
        end
      end