first cut at :ChildOf
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / ChildOf / Foo.pm
diff --git a/t/lib/TestApp/Controller/Action/ChildOf/Foo.pm b/t/lib/TestApp/Controller/Action/ChildOf/Foo.pm
new file mode 100644 (file)
index 0000000..ffba0b3
--- /dev/null
@@ -0,0 +1,10 @@
+package TestApp::Controller::Action::ChildOf::Foo;
+
+use strict;
+use warnings;
+
+use base qw/Catalyst::Controller/;
+
+sub spoon :PathPart :ChildOf('') :Args(0) { }
+
+1;