Discovered some inconsistency in precedence behavior of chained actions.
[catagits/Catalyst-Runtime.git] / t / aggregate / unit_dispatcher_chained_action.t
1 # Test case for Chained Actions
2
3 #
4
5 use strict;
6 use warnings;
7 use FindBin qw/$Bin/;
8 use lib "$Bin/../lib";
9 use Catalyst::Test 'ChainedActionsApp';
10 use Test::More tests => 2;
11
12 content_like('/', qr/Application Home Page/, 'Application home');
13 content_like('/account/123', qr/This is account 123/, 'account');