Only TODO the actually failing test.
Florian Ragwitz [Mon, 1 Dec 2008 21:05:54 +0000 (21:05 +0000)]
t/aggregate/live_component_controller_action_chained.t

index f315984..74db1f2 100644 (file)
@@ -987,8 +987,6 @@ sub run_tests {
     #   doc/*
     # 
     #   request for doc/search should end up in doc/*
-TODO: {
-    local $TODO = 'gbjk never got off his ass and fixed this';
     {
         my @expected = qw[
             TestApp::Controller::Action::Chained->begin
@@ -1000,8 +998,10 @@ TODO: {
 
         ok( my $response = request('http://localhost/chained/doc/search'),
             "we prefer static path parts earlier in the chain" );
-        is( $response->header('X-Catalyst-Executed'),
-            $expected, 'Executed actions' );
+        TODO: {
+            local $TODO = 'gbjk never got off his ass and fixed this';
+            is( $response->header('X-Catalyst-Executed'),
+                $expected, 'Executed actions' );
+        }
     }
-}; 
 }