Squelched warnings in live recursion tests
Matt S Trout [Mon, 20 Mar 2006 19:34:49 +0000 (19:34 +0000)]
t/live_recursion.t

index fa8ced1..2c766fd 100644 (file)
@@ -9,6 +9,8 @@ use lib "$FindBin::Bin/lib";
 use Test::More tests => 3;
 use Catalyst::Test 'TestApp';
 
+local $^W = 0;
+
 ok( my $response = request('http://localhost/recursion_test'), 'Request' );
 ok( !$response->is_success, 'Response Not Successful' );
 is( $response->header('X-Catalyst-Error'), 'Deep recursion detected calling "/recursion_test"', 'Deep Recursion Detected' );