ChildOf Tests: chaining and dispatching on arg count
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / ChildOf / Foo.pm
CommitLineData
141459fa 1package TestApp::Controller::Action::ChildOf::Foo;
2
3use strict;
4use warnings;
5
6use base qw/Catalyst::Controller/;
7
8sub spoon :PathPart :ChildOf('') :Args(0) { }
9
101;