Flowdock
method

perform_job

Importance_0
v6.1.7.7 - Show latest stable - 0 notes - Class: Worker
perform_job(job) public

No documentation

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

Hide source
# File activesupport/lib/active_support/testing/parallelization/worker.rb, line 42
        def perform_job(job)
          klass    = job[0]
          method   = job[1]
          reporter = job[2]

          set_process_title("#{klass}##{method}")

          result = klass.with_info_handler reporter do
            Minitest.run_one_method(klass, method)
          end

          safe_record(reporter, result)
        end
Register or log in to add new notes.