Change Catalsyt _parse_attrs so that when sub attr handlers:
[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
dc8f81e8 8plan 'skip_all' if $ENV{CATALYST_SERVER}; # This is not TestApp
9
6df93c61 10content_like('/', qr/Application Home Page/, 'Application home');
444e5611 11content_like('/15/GoldFinger', qr/List project GoldFinger pages/, 'GoldFinger Project Index');
12content_like('/15/GoldFinger/4/007', qr/This is 007 page of GoldFinger project/, '007 page in GoldFinger Project');
d4f76f02 13
14content_like('/account', qr/New account o login/, 'no account');
a3a68863 15content_like('/account/ferz', qr/This is account ferz/, '/account/ferz');
16content_like('/account/123', qr/This is account 123/, '/account/123');
d4f76f02 17content_like('/account/profile/007/James Bond', qr/This is profile of James Bond/, 'account');
18
13f911ef 19TODO: {
20 local $TODO = q(new chained action test case that fails yet.);
21 content_like('/downloads/', qr/This is downloads index/, 'downloads');
22}
23
444e5611 24action_notfound('/c');
25
22ee7603 26done_testing;
444e5611 27