summaryrefslogtreecommitdiff
path: root/spec/models/project_wiki_spec.rb
diff options
context:
space:
mode:
authorArtem Sidorenko <artem@posteo.de>2016-05-03 17:33:43 +0200
committerArtem Sidorenko <artem@posteo.de>2016-05-09 11:50:23 +0200
commit14b36f91d9d803850f59fe49961d6d6a9d540aab (patch)
treee2071f037b19010438c8d758f87ac355096d4fe7 /spec/models/project_wiki_spec.rb
parent0a103e983cccc9bb9a7a28fb4eacff8d624010f8 (diff)
downloadgitlab-ce-14b36f91d9d803850f59fe49961d6d6a9d540aab.tar.gz
Use the proper GitLab URL for links in Wiki
Diffstat (limited to 'spec/models/project_wiki_spec.rb')
-rw-r--r--spec/models/project_wiki_spec.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/models/project_wiki_spec.rb b/spec/models/project_wiki_spec.rb
index 532e3f013fd..ea659f417f2 100644
--- a/spec/models/project_wiki_spec.rb
+++ b/spec/models/project_wiki_spec.rb
@@ -38,7 +38,9 @@ describe ProjectWiki, models: true do
describe "#wiki_base_path" do
it "returns the wiki base path" do
- wiki_base_path = "/#{project.path_with_namespace}/wikis"
+ gitlab_url = Gitlab.config.gitlab.url
+ wiki_base_path = "#{gitlab_url}/#{project.path_with_namespace}/wikis"
+
expect(subject.wiki_base_path).to eq(wiki_base_path)
end
end