From 097636575c7d1e85b16e4c4eb7d87ce74137d64f Mon Sep 17 00:00:00 2001 From: Douwe Maan Date: Wed, 4 Apr 2018 15:56:41 +0200 Subject: Fix links to subdirectories of a directory with a plus character in its path --- spec/helpers/tree_helper_spec.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'spec/helpers/tree_helper_spec.rb') diff --git a/spec/helpers/tree_helper_spec.rb b/spec/helpers/tree_helper_spec.rb index ccac6e29447..ffdf6561a53 100644 --- a/spec/helpers/tree_helper_spec.rb +++ b/spec/helpers/tree_helper_spec.rb @@ -8,6 +8,7 @@ describe TreeHelper do describe '.render_tree' do before do @id = sha + @path = "" @project = project @lfs_blob_ids = [] end @@ -61,6 +62,15 @@ describe TreeHelper do end end end + + context 'when the root path contains a plus character' do + let(:root_path) { 'gtk/C++' } + let(:tree_item) { double(flat_path: 'gtk/C++/glade') } + + it 'returns the flattened path' do + expect(subject).to eq('glade') + end + end end describe '#commit_in_single_accessible_branch' do -- cgit v1.2.1