Refreshing branch
[catagits/Catalyst-Runtime.git] / trunk / t / lib / TestApp / Controller / Action / Chained / Bar.pm
diff --git a/trunk/t/lib/TestApp/Controller/Action/Chained/Bar.pm b/trunk/t/lib/TestApp/Controller/Action/Chained/Bar.pm
new file mode 100644 (file)
index 0000000..1835d50
--- /dev/null
@@ -0,0 +1,14 @@
+package TestApp::Controller::Action::Chained::Bar;
+
+use strict;
+use warnings;
+
+use base qw/Catalyst::Controller/;
+
+#
+#   Redispatching between controllers that are not in a parent/child
+#   relation. This is the root.
+#
+sub cross1 :PathPart('chained/cross') :CaptureArgs(1) :Chained('/') { }
+
+1;