X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=trunk%2Ft%2Flib%2FTestApp%2FController%2FAction%2FChained%2FAuto.pm;fp=trunk%2Ft%2Flib%2FTestApp%2FController%2FAction%2FChained%2FAuto.pm;h=0000000000000000000000000000000000000000;hb=f436bc1bece2bcc2a04138068e5c22e70d9d6d35;hp=00c908f7e6d64f234b47722f04e7b7dc9ce5f2b4;hpb=e28a6876ad3e11890226e5bab6df4b0725e0981e;p=catagits%2FCatalyst-Runtime.git diff --git a/trunk/t/lib/TestApp/Controller/Action/Chained/Auto.pm b/trunk/t/lib/TestApp/Controller/Action/Chained/Auto.pm deleted file mode 100644 index 00c908f..0000000 --- a/trunk/t/lib/TestApp/Controller/Action/Chained/Auto.pm +++ /dev/null @@ -1,33 +0,0 @@ -package TestApp::Controller::Action::Chained::Auto; -use warnings; -use strict; - -use base qw( Catalyst::Controller ); - -# -# Provided for sub-auto tests. This just always returns true. -# -sub auto : Private { 1 } - -# -# Simple chains with auto actions returning 1 and 0 -# -sub foo : Chained PathPart('chained/autochain1') CaptureArgs(1) { } -sub bar : Chained PathPart('chained/autochain2') CaptureArgs(1) { } - -# -# Detaching out of an auto action. -# -sub dt1 : Chained PathPart('chained/auto_detach') CaptureArgs(1) { } - -# -# Forwarding out of an auto action. -# -sub fw1 : Chained PathPart('chained/auto_forward') CaptureArgs(1) { } - -# -# Target for dispatch and forward tests. -# -sub fw3 : Private { } - -1;