nicer action sorting for Path
[catagits/Catalyst-Runtime.git] / t / lib / TestAppIndexActionName / Controller / IndexChained.pm
diff --git a/t/lib/TestAppIndexActionName/Controller/IndexChained.pm b/t/lib/TestAppIndexActionName/Controller/IndexChained.pm
deleted file mode 100644 (file)
index 5dfb013..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-package TestAppIndexActionName::Controller::IndexChained;
-
-use base 'Catalyst::Controller';
-
-sub index : Chained('/') PathPart('indexchained') CaptureArgs(0) {}
-
-sub index_endpoint : Chained('index') PathPart('') Args(0) {
-    my ($self, $c) = @_;
-    $c->res->body('index_chained');
-}
-
-1;