diff options
author | Gabriel Mazetto <gabriel@gitlab.com> | 2016-03-30 15:30:36 -0300 |
---|---|---|
committer | Gabriel Mazetto <gabriel@gitlab.com> | 2016-03-30 15:43:58 -0300 |
commit | 7d56d592cd7d1df718d59981af1ced9d0be8eaac (patch) | |
tree | 784d83ff994793f91e695da5ab5f3cebe940a145 /spec | |
parent | b69f8a62b2078fbd43413c670dea76871b74d0d5 (diff) | |
download | gitlab-ce-7d56d592cd7d1df718d59981af1ced9d0be8eaac.tar.gz |
Fixed Gollum pages link url expansion to render correctly in preview
Diffstat (limited to 'spec')
-rw-r--r-- | spec/lib/banzai/filter/gollum_tags_filter_spec.rb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/spec/lib/banzai/filter/gollum_tags_filter_spec.rb b/spec/lib/banzai/filter/gollum_tags_filter_spec.rb index 5e23c5c319a..ad777fe4b9c 100644 --- a/spec/lib/banzai/filter/gollum_tags_filter_spec.rb +++ b/spec/lib/banzai/filter/gollum_tags_filter_spec.rb @@ -70,20 +70,22 @@ describe Banzai::Filter::GollumTagsFilter, lib: true do end context 'linking internal resources' do - it "the created link's text will be equal to the resource's text" do + it "the created link's text will include the resource's text and project_wiki_base_path" do tag = '[[wiki-slug]]' doc = filter("See #{tag}", project_wiki: project_wiki) + expected_path = ::File.join(project_wiki.wiki_base_path, 'wiki-slug') expect(doc.at_css('a').text).to eq 'wiki-slug' - expect(doc.at_css('a')['href']).to eq 'wiki-slug' + expect(doc.at_css('a')['href']).to eq expected_path end it "the created link's text will be link-text" do tag = '[[link-text|wiki-slug]]' doc = filter("See #{tag}", project_wiki: project_wiki) + expected_path = ::File.join(project_wiki.wiki_base_path, 'wiki-slug') expect(doc.at_css('a').text).to eq 'link-text' - expect(doc.at_css('a')['href']).to eq 'wiki-slug' + expect(doc.at_css('a')['href']).to eq expected_path end end |