Trying to unfuck this branch
[catagits/Catalyst-Runtime.git] / trunk / t / lib / TestApp / Controller / Action / Chained / Auto / Forward.pm
diff --git a/trunk/t/lib/TestApp/Controller/Action/Chained/Auto/Forward.pm b/trunk/t/lib/TestApp/Controller/Action/Chained/Auto/Forward.pm
deleted file mode 100644 (file)
index 982439c..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-package TestApp::Controller::Action::Chained::Auto::Forward;
-use warnings;
-use strict;
-
-use base qw( Catalyst::Controller );
-
-#
-#   For testing behaviour of a forwarding auto action in a chain.
-#
-sub auto    : Private {
-    my ( $self, $c ) = @_;
-    $c->forward( '/action/chained/auto/fw3' );
-    return 1;
-}
-
-sub forwardend  : Chained('/action/chained/auto/fw1') Args(1) { }
-
-1;