From: Florian Ragwitz Date: Mon, 11 Jan 2010 22:12:16 +0000 (+0000) Subject: Delete unfixable FAIL. X-Git-Tag: 5.89000~49 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=86101829ab51e1537a9277557d24953e51a14d90;hp=b4c3100347e009b27f62e50b8e06dde227872328;p=catagits%2FCatalyst-Runtime.git Delete unfixable FAIL. It's unnecessary under PSGI anyway. The PSGI servers won't let get undecoded paths through to us. --- diff --git a/t/aggregate/live_engine_request_escaped_path.t b/t/aggregate/live_engine_request_escaped_path.t deleted file mode 100644 index 92bd2ee..0000000 --- a/t/aggregate/live_engine_request_escaped_path.t +++ /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' ); -} -