Strip trailing whitespace in relative submodule URL

This commit is contained in:
Douwe Maan 2017-06-28 14:01:39 -05:00
parent 585e6aa5b2
commit 78379f66dd
3 changed files with 10 additions and 0 deletions

View file

@ -73,6 +73,7 @@ module SubmoduleHelper
end
def relative_self_links(url, commit)
url.rstrip!
# Map relative links to a namespace and project
# For example:
# ../bar.git -> same namespace, repo bar

View file

@ -0,0 +1,4 @@
---
title: Strip trailing whitespace in relative submodule URL
merge_request:
author:

View file

@ -170,6 +170,11 @@ describe SubmoduleHelper do
expect(result).to eq(["/#{group.path}/test", "/#{group.path}/test/tree/#{commit_id}"])
end
it 'with trailing whitespace' do
result = relative_self_links('../test.git ', commit_id)
expect(result).to eq(["/#{group.path}/test", "/#{group.path}/test/tree/#{commit_id}"])
end
it 'two levels down' do
result = relative_self_links('../../test.git', commit_id)
expect(result).to eq(["/#{group.path}/test", "/#{group.path}/test/tree/#{commit_id}"])