Chained: test and err handling for absolute path parts; test for recursive chains
[catagits/Catalyst-Runtime.git] / t / lib / TestAppChainedRecursive / Controller / Foo.pm
1 package TestAppChainedRecursive::Controller::Foo;
2
3 use strict;
4 use warnings;
5
6 use base qw/Catalyst::Controller/;
7
8 sub foo : Chained('bar') CaptureArgs(1) { }
9 sub bar : Chained('foo') CaptureArgs(1) { }
10
11 1;