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