method

wrap_execution

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: ActionController::TestCase::Behavior
wrap_execution(&block) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_controller/test_case.rb, line 599
        def wrap_execution(&block)
          if ActionController::TestCase.executor_around_each_request && defined?(Rails.application) && Rails.application
            Rails.application.executor.wrap(&block)
          else
            yield
          end
        end
Register or log in to add new notes.