aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/jobs/queue_adapter_job.rb
Commit message (Collapse)AuthorAgeFilesLines
* correctly set test adapter when configure the queue adapter on a per job ↵Yuji Yaginuma2017-01-311-0/+3
(#26690) The `ActiveJob::TestHelper` replace the adapter to test adapter in `before_setup`. It gets the target class using the `descendants`, but if the test target job class is not loaded, will not be a replacement of the adapter. Therefore, instead of replacing with `before_setup`, modified to replace when setting adapter. Fixes #26360