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

t0m at dev.catalyst.perl.org t0m at dev.catalyst.perl.org
Fri May 22 11:56:14 GMT 2009


Author: t0m
Date: 2009-05-22 11:56:13 +0000 (Fri, 22 May 2009)
New Revision: 10237

Modified:
   Catalyst-Runtime/5.80/trunk/t/aggregate/live_engine_request_env.t
Log:
Backing out r10230, as that won't work against a remote server, and this passes for me with it backed out

Modified: Catalyst-Runtime/5.80/trunk/t/aggregate/live_engine_request_env.t
===================================================================
--- Catalyst-Runtime/5.80/trunk/t/aggregate/live_engine_request_env.t	2009-05-22 05:13:12 UTC (rev 10236)
+++ Catalyst-Runtime/5.80/trunk/t/aggregate/live_engine_request_env.t	2009-05-22 11:56:13 UTC (rev 10237)
@@ -31,8 +31,8 @@
         'Request' );
     ok( $response->is_success, 'Response Successful 2xx' );
     is( $response->content_type, 'text/plain', 'Response Content-Type' );
-    ok( eval '$env = TestApp->engine->env', 'engine->env is defined' );
-    is( ref($env), 'HASH', 'engine->env is a hash' );
+    ok( eval '$env = ' . $response->content, 'Unserialize Catalyst::Request' );
+    is ref($env), 'HASH';
     ok exists($env->{PATH}), 'Have a PATH env var';
 
     SKIP:




More information about the Catalyst-commits mailing list