execute is now in Context - fixing test libs (for example test t/aggregate/live_compo...
Zbigniew Łukasiak [Tue, 17 Nov 2009 14:45:13 +0000 (14:45 +0000)]
t/lib/TestApp.pm
t/lib/TestApp/Context.pm

index 94bddd9..50238af 100644 (file)
@@ -24,36 +24,6 @@ TestApp->config( name => 'TestApp', root => '/some/dir' );
 TestApp->context_class( 'TestApp::Context' );
 TestApp->setup;
 
-sub execute {
-    my $c      = shift;
-    my $class  = ref( $c->component( $_[0] ) ) || $_[0];
-    my $action = $_[1]->reverse;
-
-    my $method;
-
-    if ( $action =~ /->(\w+)$/ ) {
-        $method = $1;
-    }
-    elsif ( $action =~ /\/(\w+)$/ ) {
-        $method = $1;
-    }
-    elsif ( $action =~ /^(\w+)$/ ) {
-        $method = $action;
-    }
-
-    if ( $class && $method && $method !~ /^_/ ) {
-        my $executed = sprintf( "%s->%s", $class, $method );
-        my @executed = $c->response->headers->header('X-Catalyst-Executed');
-        push @executed, $executed;
-        $c->response->headers->header(
-            'X-Catalyst-Executed' => join ', ',
-            @executed
-        );
-    }
-    no warnings 'recursion';
-    return $c->SUPER::execute(@_);
-}
-
 # Replace the very large HTML error page with
 # useful info if something crashes during a test
 sub finalize_error {
index 3b09d79..1aa6d7e 100644 (file)
@@ -21,5 +21,36 @@ sub count_leaks {
     return scalar @{ $ctx->leaks };
 }
 
+sub execute {
+    my $c      = shift;
+    my $class  = ref( $c->component( $_[0] ) ) || $_[0];
+    my $action = $_[1]->reverse;
+
+    my $method;
+
+    if ( $action =~ /->(\w+)$/ ) {
+        $method = $1;
+    }
+    elsif ( $action =~ /\/(\w+)$/ ) {
+        $method = $1;
+    }
+    elsif ( $action =~ /^(\w+)$/ ) {
+        $method = $action;
+    }
+
+    if ( $class && $method && $method !~ /^_/ ) {
+        my $executed = sprintf( "%s->%s", $class, $method );
+        my @executed = $c->response->headers->header('X-Catalyst-Executed');
+        push @executed, $executed;
+        $c->response->headers->header(
+            'X-Catalyst-Executed' => join ', ',
+            @executed
+        );
+    }
+    no warnings 'recursion';
+    return $c->SUPER::execute(@_);
+}
+
+
 1;