Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-12-11 18:15:12 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-12-11 18:15:12 +0300
commitd83a3edd4416e93f2815815c1be4ee0a2755a3c5 (patch)
tree670863f034908a1832b1c5db228b9ae567e4cf7e /spec/workers
parentee2024d964d1742a8ec01da89e0b34351c9303ab (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/workers')
-rw-r--r--spec/workers/ci/pipeline_artifacts/coverage_report_worker_spec.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/workers/ci/pipeline_artifacts/coverage_report_worker_spec.rb b/spec/workers/ci/pipeline_artifacts/coverage_report_worker_spec.rb
index b594f661a9a..a7624fdfe01 100644
--- a/spec/workers/ci/pipeline_artifacts/coverage_report_worker_spec.rb
+++ b/spec/workers/ci/pipeline_artifacts/coverage_report_worker_spec.rb
@@ -3,6 +3,10 @@
require 'spec_helper'
RSpec.describe Ci::PipelineArtifacts::CoverageReportWorker, feature_category: :code_testing do
+ it 'has the `until_executed` deduplicate strategy' do
+ expect(described_class.get_deduplicate_strategy).to eq(:until_executed)
+ end
+
describe '#perform' do
let(:pipeline_id) { pipeline.id }