dev-ruby/sinatra: remove unused patch.
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>
Mon, 26 Sep 2016 16:25:02 +0000 (18:25 +0200)
committerPatrice Clement <monsieurp@gentoo.org>
Mon, 31 Oct 2016 12:00:11 +0000 (13:00 +0100)
Closes: https://github.com/gentoo/gentoo/pull/2417

Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
dev-ruby/sinatra/files/sinatra-1.4.4-fix-tests.patch [deleted file]

diff --git a/dev-ruby/sinatra/files/sinatra-1.4.4-fix-tests.patch b/dev-ruby/sinatra/files/sinatra-1.4.4-fix-tests.patch
deleted file mode 100644 (file)
index 25ed730..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-commit c5c9f6b5501a366d5809faa44e50fad371c14870
-Author: Jon Rowe <hello@jonrowe.co.uk>
-Date:   Tue Oct 29 14:18:46 2013 +1100
-
-    fixes the build by disabling path traversal protection for this test
-    
-    Seems that this test is in direct competition with the desired
-    behaviour of path traversal protection.
-
-diff --git a/test/routing_test.rb b/test/routing_test.rb
-index 410bfda..5584601 100644
---- a/test/routing_test.rb
-+++ b/test/routing_test.rb
-@@ -90,7 +90,10 @@ class RoutingTest < Test::Unit::TestCase
-   end
-   it "it handles encoded slashes correctly" do
--    mock_app { get("/:a") { |a| a } }
-+    mock_app {
-+      set :protection, :except => :path_traversal
-+      get("/:a") { |a| a }
-+    }
-     get '/foo%2Fbar'
-     assert_equal 200, status
-     assert_body "foo/bar"