summaryrefslogtreecommitdiff
path: root/spec/lib/extracts_path_spec.rb
diff options
context:
space:
mode:
authorSato Hiroyuki <sathiroyuki@gmail.com>2013-03-21 14:41:16 +0000
committerSato Hiroyuki <sathiroyuki@gmail.com>2013-03-21 15:10:14 +0000
commita1fe375e44987d89b9f9fbacb784eed83de233b2 (patch)
tree569d9db493584db0f19cc176f73f40b52873b7b5 /spec/lib/extracts_path_spec.rb
parentf7ca6c5079bb3c79c709721dae06b77200a1972e (diff)
downloadgitlab-ce-a1fe375e44987d89b9f9fbacb784eed83de233b2.tar.gz
Fix 404 error while displaying json files.
It uses params[:id] instead of request.fullpath. It should fix #3132.
Diffstat (limited to 'spec/lib/extracts_path_spec.rb')
-rw-r--r--spec/lib/extracts_path_spec.rb42
1 files changed, 0 insertions, 42 deletions
diff --git a/spec/lib/extracts_path_spec.rb b/spec/lib/extracts_path_spec.rb
index ee20ae79809..aac72c63ea5 100644
--- a/spec/lib/extracts_path_spec.rb
+++ b/spec/lib/extracts_path_spec.rb
@@ -54,47 +54,5 @@ describe ExtractsPath do
extract_ref('stable/CHANGELOG').should == ['stable', 'CHANGELOG']
end
end
-
- context "with a fullpath" do
- it "extracts a valid branch" do
- extract_ref('/gitlab/gitlab-ci/tree/foo/bar/baz/CHANGELOG').should == ['foo/bar/baz', 'CHANGELOG']
- end
-
- it "extracts a valid tag" do
- extract_ref('/gitlab/gitlab-ci/tree/v2.0.0/CHANGELOG').should == ['v2.0.0', 'CHANGELOG']
- end
-
- it "extracts a valid commit SHA" do
- extract_ref('/gitlab/gitlab-ci/tree/f4b14494ef6abf3d144c28e4af0c20143383e062/CHANGELOG').should ==
- ['f4b14494ef6abf3d144c28e4af0c20143383e062', 'CHANGELOG']
- end
-
- it "extracts a timestamp" do
- extract_ref('/gitlab/gitlab-ci/tree/v2.0.0/CHANGELOG?_=12354435').should == ['v2.0.0', 'CHANGELOG']
- end
- end
-
- context "with a fullpath and a relative_url_root" do
- before do
- Gitlab.config.gitlab.stub(relative_url_root: '/relative')
- end
-
- it "extracts a valid branch with relative_url_root" do
- extract_ref('/relative/gitlab/gitlab-ci/tree/foo/bar/baz/CHANGELOG').should == ['foo/bar/baz', 'CHANGELOG']
- end
-
- it "extracts a valid tag" do
- extract_ref('/relative/gitlab/gitlab-ci/tree/v2.0.0/CHANGELOG').should == ['v2.0.0', 'CHANGELOG']
- end
-
- it "extracts a valid commit SHA" do
- extract_ref('/relative/gitlab/gitlab-ci/tree/f4b14494ef6abf3d144c28e4af0c20143383e062/CHANGELOG').should ==
- ['f4b14494ef6abf3d144c28e4af0c20143383e062', 'CHANGELOG']
- end
-
- it "extracts a timestamp" do
- extract_ref('/relative/gitlab/gitlab-ci/tree/v2.0.0/CHANGELOG?_=12354435').should == ['v2.0.0', 'CHANGELOG']
- end
- end
end
end