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:
Diffstat (limited to 'spec/serializers')
-rw-r--r--spec/serializers/pipeline_details_entity_spec.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/spec/serializers/pipeline_details_entity_spec.rb b/spec/serializers/pipeline_details_entity_spec.rb
index 67f8860ed4a..128f1922887 100644
--- a/spec/serializers/pipeline_details_entity_spec.rb
+++ b/spec/serializers/pipeline_details_entity_spec.rb
@@ -70,6 +70,20 @@ RSpec.describe PipelineDetailsEntity do
expect(subject[:flags][:retryable]).to eq false
end
end
+
+ it 'does not contain code_quality_build_path in details' do
+ expect(subject[:details]).not_to include :code_quality_build_path
+ end
+
+ context 'when option code_quality_walkthrough is set and pipeline is a success' do
+ let(:entity) do
+ described_class.represent(pipeline, request: request, code_quality_walkthrough: true)
+ end
+
+ it 'contains details.code_quality_build_path' do
+ expect(subject[:details]).to include :code_quality_build_path
+ end
+ end
end
context 'when pipeline is cancelable' do