aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/integration
diff options
context:
space:
mode:
authorAlberto Almagro <alberto.almagro@rakuten.com>2018-03-19 21:25:39 +0100
committerAlberto Almagro <alberto.almagro@rakuten.com>2018-03-19 21:27:16 +0100
commit6ef720791d6532a107f4777edfe1d708b6b9c068 (patch)
treec6ce9a6aabe6654af03384bd8de7b4a1b71ef3b1 /activejob/test/integration
parent538463bce782e58ea72d130315cc510dab50777d (diff)
downloadrails-6ef720791d6532a107f4777edfe1d708b6b9c068.tar.gz
rails-6ef720791d6532a107f4777edfe1d708b6b9c068.tar.bz2
rails-6ef720791d6532a107f4777edfe1d708b6b9c068.zip
Remove support for Qu gem.
Reasons are that the Qu gem wasn't compatible since Rails 5.1, gem development was stopped in 2014 and maintainers have confirmed its demise. See issue #32273
Diffstat (limited to 'activejob/test/integration')
-rw-r--r--activejob/test/integration/queuing_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activejob/test/integration/queuing_test.rb b/activejob/test/integration/queuing_test.rb
index 7a95d3d039..32afb5ca62 100644
--- a/activejob/test/integration/queuing_test.rb
+++ b/activejob/test/integration/queuing_test.rb
@@ -82,7 +82,7 @@ class QueuingTest < ActiveSupport::TestCase
end
test "should supply a provider_job_id when available for immediate jobs" do
- skip unless adapter_is?(:async, :delayed_job, :sidekiq, :qu, :que, :queue_classic)
+ skip unless adapter_is?(:async, :delayed_job, :sidekiq, :que, :queue_classic)
test_job = TestJob.perform_later @id
assert test_job.provider_job_id, "Provider job id should be set by provider"
end