prevent actions named index from registering as an index dispatchtype if they can...
[catagits/Catalyst-Runtime.git] / t / lib / TestAppIndexDefault / Controller / IndexChained.pm
diff --git a/t/lib/TestAppIndexDefault/Controller/IndexChained.pm b/t/lib/TestAppIndexDefault/Controller/IndexChained.pm
deleted file mode 100644 (file)
index 18a8034..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-package TestAppIndexDefault::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;