[Catalyst-commits] r11339 - Catalyst-Runtime/5.80/trunk/t/aggregate

marcus at dev.catalyst.perl.org marcus at dev.catalyst.perl.org
Wed Sep 9 17:05:33 GMT 2009


Author: marcus
Date: 2009-09-09 17:05:32 +0000 (Wed, 09 Sep 2009)
New Revision: 11339

Modified:
   Catalyst-Runtime/5.80/trunk/t/aggregate/live_engine_request_escaped_path.t
Log:
un-TODO passing TODO tests

Modified: Catalyst-Runtime/5.80/trunk/t/aggregate/live_engine_request_escaped_path.t
===================================================================
--- Catalyst-Runtime/5.80/trunk/t/aggregate/live_engine_request_escaped_path.t	2009-09-08 07:29:46 UTC (rev 11338)
+++ Catalyst-Runtime/5.80/trunk/t/aggregate/live_engine_request_escaped_path.t	2009-09-09 17:05:32 UTC (rev 11339)
@@ -54,8 +54,6 @@
 }
 
 # test that request with URL-escaped code works.
-TODO: {
-    local $TODO = 'Actions should match when path parts are url encoded';
     my $request = Catalyst::Utils::request( 'http://localhost/args/param%73/one/two' );
     my $cgi     = HTTP::Request::AsCGI->new( $request, %ENV )->setup;
 
@@ -67,6 +65,8 @@
     TestApp->handle_request( env => \%ENV );
 
     ok( my $response = $cgi->restore->response );
+TODO: {
+    local $TODO = 'Actions should match when path parts are url encoded';
     ok( $response->is_success, 'Response Successful 2xx' );
     is( $response->content, 'onetwo' );
 }




More information about the Catalyst-commits mailing list