Fixed error reporting for acl exceptions
[catagits/Catalyst-Runtime.git] / t / live / lib / TestApp.pm
index 4ab30c3..594dfa3 100644 (file)
@@ -12,7 +12,7 @@ TestApp->setup;
 
 sub index : Private {
     my ( $self, $c ) = @_;
-    $c->res->body( 'root index' );
+    $c->res->body('root index');
 }
 
 sub global_action : Private {
@@ -20,7 +20,6 @@ sub global_action : Private {
     $c->forward('TestApp::View::Dump::Request');
 }
 
-
 sub execute {
     my $c      = shift;
     my $class  = ref( $c->component( $_[0] ) ) || $_[0];
@@ -38,7 +37,6 @@ sub execute {
         $method = $action;
     }
 
-
     if ( $class && $method && $method !~ /^_/ ) {
         my $executed = sprintf( "%s->%s", $class, $method );
         my @executed = $c->response->headers->header('X-Catalyst-Executed');
@@ -52,4 +50,8 @@ sub execute {
     return $c->SUPER::execute(@_);
 }
 
+{
+    no warnings 'redefine';
+    sub Catalyst::Log::error { }
+}
 1;