begin in Action.pm must return true
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action.pm
index b745e82..a254321 100644 (file)
@@ -7,6 +7,8 @@ sub begin : Private {
     my ( $self, $c ) = @_;
     $c->res->header( 'X-Test-Class'  => ref($self) );
     $c->response->content_type('text/plain; charset=utf-8');
+    
+    return 1;
 }
 
 sub default : Private {