From f3ee7fc80b10f58d0dbd4ea683e65d5d6ac01666 Mon Sep 17 00:00:00 2001
From: winniehell <git@winniehell.de>
Date: Thu, 18 Aug 2016 22:47:16 +0200
Subject: [PATCH] Add failing test for gitlab-com/support-forum#952

---
 spec/lib/extracts_path_spec.rb | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/spec/lib/extracts_path_spec.rb b/spec/lib/extracts_path_spec.rb
index 36c77206a3f..1d08daee059 100644
--- a/spec/lib/extracts_path_spec.rb
+++ b/spec/lib/extracts_path_spec.rb
@@ -52,6 +52,16 @@ describe ExtractsPath, lib: true do
         expect(@id).to start_with('foo%20bar/')
       end
     end
+
+    context 'path contains space' do
+      let(:params) { { path: 'with space', ref: '38008cb17ce1466d8fec2dfa6f6ab8dcfe5cf49e' } }
+
+      it 'is not converted to %20 in @path' do
+        assign_ref_vars
+
+        expect(@path).to eq(params[:path])
+      end
+    end
   end
 
   describe '#extract_ref' do
-- 
GitLab