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:
authorLin Jen-Shin <godfat@godfat.org>2017-07-18 17:32:34 +0300
committerLin Jen-Shin <godfat@godfat.org>2017-07-18 18:48:14 +0300
commit7bd5e571256aff6de132b118f04224e56abf3228 (patch)
tree4ec27daa73e2588299b73686ee8954ac299915b1 /spec/serializers/pipeline_details_entity_spec.rb
parent1ed6d1541c7973c08cdd4c1906ddcc0c3db893e3 (diff)
Instead of adding master, stub_not_protect_default_branch
Diffstat (limited to 'spec/serializers/pipeline_details_entity_spec.rb')
-rw-r--r--spec/serializers/pipeline_details_entity_spec.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/spec/serializers/pipeline_details_entity_spec.rb b/spec/serializers/pipeline_details_entity_spec.rb
index e9b24b47900..b990370a271 100644
--- a/spec/serializers/pipeline_details_entity_spec.rb
+++ b/spec/serializers/pipeline_details_entity_spec.rb
@@ -9,6 +9,8 @@ describe PipelineDetailsEntity do
end
before do
+ stub_not_protect_default_branch
+
allow(request).to receive(:current_user).and_return(user)
end
@@ -52,7 +54,7 @@ describe PipelineDetailsEntity do
context 'user has ability to retry pipeline' do
before do
- project.add_master(user)
+ project.add_developer(user)
end
it 'retryable flag is true' do
@@ -80,7 +82,7 @@ describe PipelineDetailsEntity do
context 'user has ability to cancel pipeline' do
before do
- project.add_master(user)
+ project.add_developer(user)
end
it 'cancelable flag is true' do