From: Tomas Doran Date: Fri, 22 May 2009 11:56:13 +0000 (+0000) Subject: Backing out r10230, as that won't work against a remote server, and this passes for... X-Git-Tag: 5.80005~28 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=69cc9001ca889fef5bc5d4ba4d6c0f7251dc3f8f Backing out r10230, as that won't work against a remote server, and this passes for me with it backed out --- diff --git a/t/aggregate/live_engine_request_env.t b/t/aggregate/live_engine_request_env.t index 6763b14..fdf980b 100644 --- a/t/aggregate/live_engine_request_env.t +++ b/t/aggregate/live_engine_request_env.t @@ -31,8 +31,8 @@ use HTTP::Request::Common; '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: