Moved failed test to TODO section
[catagits/Catalyst-Runtime.git] / t / aggregate / live__component_controller_action_chained2.t
CommitLineData
6df93c61 1use strict;
2use warnings;
3use FindBin qw/$Bin/;
4use lib "$Bin/../lib";
5use Catalyst::Test 'ChainedActionsApp';
22ee7603 6use Test::More;
6df93c61 7
8content_like('/', qr/Application Home Page/, 'Application home');
444e5611 9content_like('/15/GoldFinger', qr/List project GoldFinger pages/, 'GoldFinger Project Index');
10content_like('/15/GoldFinger/4/007', qr/This is 007 page of GoldFinger project/, '007 page in GoldFinger Project');
dfe82bbd 11TODO: {
12 local $TODO="Bug on precedence of dispatch order of chained actions.";
13 content_like('/account', qr/New account o login/, 'no account');
14 content_like('/account/ferz', qr/This is account ferz/, 'account');
15 content_like('/account/123', qr/This is account 123/, 'account');
16}
444e5611 17action_notfound('/c');
18
22ee7603 19done_testing;
444e5611 20