- Added new _DISPATCH private action for dispatching
[catagits/Catalyst-Runtime.git] / t / live / lib / TestApp.pm
index 95d77e2..974e9f3 100644 (file)
@@ -34,7 +34,7 @@ sub execute {
         $method = $1;
     }
 
-    if ( $class && $method ) {
+    if ( $class && $method && $method !~ /^_/ ) {
         my $executed = sprintf( "%s->%s", $class, $method );
         my @executed = $c->response->headers->header('X-Catalyst-Executed');
         push @executed, $executed;