Delete unfixable FAIL.
Florian Ragwitz [Mon, 11 Jan 2010 22:12:16 +0000 (22:12 +0000)]
It's unnecessary under PSGI anyway. The PSGI servers won't let get undecoded
paths through to us.

t/aggregate/live_engine_request_escaped_path.t [deleted file]

diff --git a/t/aggregate/live_engine_request_escaped_path.t b/t/aggregate/live_engine_request_escaped_path.t
deleted file mode 100644 (file)
index 92bd2ee..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/bin/evn perl
-use strict;
-use warnings;
-
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-
-use Test::More tests => 6;
-use Catalyst::Test 'TestApp';
-
-# test that un-escaped can be feteched.
-{
-
-    ok( my $response = request('http://localhost/args/params/one/two') );
-    ok( $response->is_success, 'Response Successful 2xx' );
-    is( $response->content, 'onetwo' );
-}
-
-# test that request with URL-escaped code works.
-{
-    my $response = request('http://localhost/args/param%73/one/two', {
-        extra_env => { PATH_INFO => '/args/param%73/one/two' },
-    });
-
-    ok( $response );
-    ok( $response->is_success, 'Response Successful 2xx' );
-    is( $response->content, 'onetwo' );
-}
-