[Catalyst-commits] r13554 - Catalyst-Runtime/5.80/trunk/t/aggregate

ferz at dev.catalyst.perl.org ferz at dev.catalyst.perl.org
Fri Aug 27 14:16:11 GMT 2010


Author: ferz
Date: 2010-08-27 15:16:11 +0100 (Fri, 27 Aug 2010)
New Revision: 13554

Modified:
   Catalyst-Runtime/5.80/trunk/t/aggregate/live__component_controller_action_chained2.t
Log:
Moved failed test to TODO section


Modified: Catalyst-Runtime/5.80/trunk/t/aggregate/live__component_controller_action_chained2.t
===================================================================
--- Catalyst-Runtime/5.80/trunk/t/aggregate/live__component_controller_action_chained2.t	2010-08-26 01:10:27 UTC (rev 13553)
+++ Catalyst-Runtime/5.80/trunk/t/aggregate/live__component_controller_action_chained2.t	2010-08-27 14:16:11 UTC (rev 13554)
@@ -8,9 +8,12 @@
 content_like('/', qr/Application Home Page/, 'Application home');
 content_like('/15/GoldFinger', qr/List project GoldFinger pages/, 'GoldFinger Project Index');
 content_like('/15/GoldFinger/4/007', qr/This is 007 page of GoldFinger project/, '007 page in GoldFinger Project');
-content_like('/account', qr/New account o login/, 'no account');
-content_like('/account/ferz', qr/This is account ferz/, 'account');
-content_like('/account/123', qr/This is account 123/, 'account');
+TODO: {
+  local $TODO="Bug on precedence of dispatch order of chained actions.";
+  content_like('/account', qr/New account o login/, 'no account');
+  content_like('/account/ferz', qr/This is account ferz/, 'account');
+  content_like('/account/123', qr/This is account 123/, 'account');
+}
 action_notfound('/c');
 
 done_testing;




More information about the Catalyst-commits mailing list