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>2021-05-18 18:10:46 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-05-18 18:10:46 +0300
commit346c2ebb5a818524c5d8d95dc6b9fc8c892e3b5c (patch)
tree63bf068a9d8cedf0b7f9e80cf99e491813617db1 /spec/serializers
parent5f287a8e306da1e0b6152a0b7f8621a8e71a3fe4 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/serializers')
-rw-r--r--spec/serializers/ci/pipeline_entity_spec.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/spec/serializers/ci/pipeline_entity_spec.rb b/spec/serializers/ci/pipeline_entity_spec.rb
index 58b28de09b1..054406e4e65 100644
--- a/spec/serializers/ci/pipeline_entity_spec.rb
+++ b/spec/serializers/ci/pipeline_entity_spec.rb
@@ -239,23 +239,23 @@ RSpec.describe Ci::PipelineEntity do
end
context 'when pipeline has failed builds' do
- let_it_be(:pipeline) { create(:ci_pipeline, user: user) }
+ let_it_be(:pipeline) { create(:ci_pipeline, project: project, user: user) }
let_it_be(:build) { create(:ci_build, :success, pipeline: pipeline) }
let_it_be(:failed_1) { create(:ci_build, :failed, pipeline: pipeline) }
let_it_be(:failed_2) { create(:ci_build, :failed, pipeline: pipeline) }
context 'when the user can retry the pipeline' do
- it 'exposes these failed builds' do
- allow(entity).to receive(:can_retry?).and_return(true)
+ before do
+ project.add_maintainer(user)
+ end
+ it 'exposes these failed builds' do
expect(subject[:failed_builds].map { |b| b[:id] }).to contain_exactly(failed_1.id, failed_2.id)
end
end
context 'when the user cannot retry the pipeline' do
it 'is nil' do
- allow(entity).to receive(:can_retry?).and_return(false)
-
expect(subject[:failed_builds]).to be_nil
end
end