first cut at :ChildOf
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / ChildOf / Foo.pm
1 package TestApp::Controller::Action::ChildOf::Foo;
2
3 use strict;
4 use warnings;
5
6 use base qw/Catalyst::Controller/;
7
8 sub spoon :PathPart :ChildOf('') :Args(0) { }
9
10 1;