diff options
author | Satish Perala <satish@cybrilla.com> | 2016-08-25 22:35:59 +0530 |
---|---|---|
committer | Sean McGivern <sean@gitlab.com> | 2018-06-20 14:13:23 +0100 |
commit | 9170aab92e616a6f6d3ddfc4cf8326cba0e4a1a8 (patch) | |
tree | ad2c13c7521fedb74f89693dd4561e92f92167db /spec/lib | |
parent | b349c01c6a71ac1f486b8ee86ce96ef48ac04ed8 (diff) | |
download | gitlab-ce-9170aab92e616a6f6d3ddfc4cf8326cba0e4a1a8.tar.gz |
Passing absolute image urls in the markdown content in the webhooks
Diffstat (limited to 'spec/lib')
-rw-r--r-- | spec/lib/gitlab/hook_data/issue_builder_spec.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/lib/gitlab/hook_data/issue_builder_spec.rb b/spec/lib/gitlab/hook_data/issue_builder_spec.rb index 506b2c0be20..0e4a1d345f4 100644 --- a/spec/lib/gitlab/hook_data/issue_builder_spec.rb +++ b/spec/lib/gitlab/hook_data/issue_builder_spec.rb @@ -40,5 +40,14 @@ describe Gitlab::HookData::IssueBuilder do expect(data).to include(:human_total_time_spent) expect(data).to include(:assignee_ids) end + + context 'when the issue has an image in the description' do + let(:issue_with_description) { create(:issue, description: 'test![Issue_Image](/uploads/abc/Issue_Image.png)') } + let(:builder) { described_class.new(issue_with_description) } + + it 'adds absolute urls for images in the description' do + expect(data[:description]).to eq("test![Issue_Image](#{Settings.gitlab.url}/uploads/abc/Issue_Image.png)") + end + end end end |