summaryrefslogtreecommitdiff
path: root/spec/workers/concerns/pipeline_queue_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/workers/concerns/pipeline_queue_spec.rb')
-rw-r--r--spec/workers/concerns/pipeline_queue_spec.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/spec/workers/concerns/pipeline_queue_spec.rb b/spec/workers/concerns/pipeline_queue_spec.rb
deleted file mode 100644
index 6c1ac2052e4..00000000000
--- a/spec/workers/concerns/pipeline_queue_spec.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe PipelineQueue do
- let(:worker) do
- Class.new do
- def self.name
- 'DummyWorker'
- end
-
- include ApplicationWorker
- include PipelineQueue
- end
- end
-
- it 'sets a default pipelines queue automatically' do
- expect(worker.sidekiq_options['queue'])
- .to eq 'pipeline_default:dummy'
- end
-end