[Catalyst-commits] r12607 - Catalyst-Runtime/5.80/branches/psgi/t/aggregate

rafl at dev.catalyst.perl.org rafl at dev.catalyst.perl.org
Mon Jan 11 22:12:16 GMT 2010


Author: rafl
Date: 2010-01-11 22:12:16 +0000 (Mon, 11 Jan 2010)
New Revision: 12607

Removed:
   Catalyst-Runtime/5.80/branches/psgi/t/aggregate/live_engine_request_escaped_path.t
Log:
Delete unfixable FAIL.

It's unnecessary under PSGI anyway. The PSGI servers won't let get undecoded
paths through to us.

Deleted: Catalyst-Runtime/5.80/branches/psgi/t/aggregate/live_engine_request_escaped_path.t
===================================================================
--- Catalyst-Runtime/5.80/branches/psgi/t/aggregate/live_engine_request_escaped_path.t	2010-01-11 21:41:38 UTC (rev 12606)
+++ Catalyst-Runtime/5.80/branches/psgi/t/aggregate/live_engine_request_escaped_path.t	2010-01-11 22:12:16 UTC (rev 12607)
@@ -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' );
-}
-




More information about the Catalyst-commits mailing list