From: Florian Ragwitz Date: Mon, 1 Dec 2008 21:05:54 +0000 (+0000) Subject: Only TODO the actually failing test. X-Git-Tag: 5.8000_04~25 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=fc38b0560394940f71dd8620d4006254eb067992 Only TODO the actually failing test. --- diff --git a/t/aggregate/live_component_controller_action_chained.t b/t/aggregate/live_component_controller_action_chained.t index f315984..74db1f2 100644 --- a/t/aggregate/live_component_controller_action_chained.t +++ b/t/aggregate/live_component_controller_action_chained.t @@ -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' ); + } } -}; }