summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorAsh McKenzie <amckenzie@gitlab.com>2019-05-28 08:16:26 +0000
committerAsh McKenzie <amckenzie@gitlab.com>2019-05-28 08:16:26 +0000
commit2714f85c1287e560d38c8de9f1f17c3aa3d4c8df (patch)
tree1ce5726f4455210ba023a639d5d3fa52e3a45d54 /spec
parent85b5d31ab47be1992e53ed72d942c9272548672f (diff)
parent7e05f3b78b6e2e892bc309105711316dc17a109d (diff)
downloadgitlab-ce-2714f85c1287e560d38c8de9f1f17c3aa3d4c8df.tar.gz
Merge branch 'use-source-ref-name-in-webhook' into 'master'
Use source ref in pipeline webhook Closes #61553 See merge request gitlab-org/gitlab-ce!28772
Diffstat (limited to 'spec')
-rw-r--r--spec/lib/gitlab/data_builder/pipeline_spec.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/lib/gitlab/data_builder/pipeline_spec.rb b/spec/lib/gitlab/data_builder/pipeline_spec.rb
index 9ef987a0826..1f36fd5c6ef 100644
--- a/spec/lib/gitlab/data_builder/pipeline_spec.rb
+++ b/spec/lib/gitlab/data_builder/pipeline_spec.rb
@@ -50,5 +50,14 @@ describe Gitlab::DataBuilder::Pipeline do
it { expect(attributes[:variables]).to be_a(Array) }
it { expect(attributes[:variables]).to contain_exactly({ key: 'TRIGGER_KEY_1', value: 'TRIGGER_VALUE_1' }) }
end
+
+ context 'when pipeline is a detached merge request pipeline' do
+ let(:merge_request) { create(:merge_request, :with_detached_merge_request_pipeline) }
+ let(:pipeline) { merge_request.all_pipelines.first }
+
+ it 'returns a source ref' do
+ expect(attributes[:ref]).to eq(merge_request.source_branch)
+ end
+ end
end
end