Trying to unfuck this branch
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Auto.pm
diff --git a/t/lib/TestApp/Controller/Action/Auto.pm b/t/lib/TestApp/Controller/Action/Auto.pm
deleted file mode 100644 (file)
index b90b4e6..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-package TestApp::Controller::Action::Auto;
-
-use strict;
-use base 'TestApp::Controller::Action';
-
-sub auto : Private {
-    my ( $self, $c ) = @_;
-    return 1;
-}
-
-sub default : Private {
-    my ( $self, $c ) = @_;
-    $c->res->body( 'default' );
-}
-
-sub one : Local {
-    my ( $self, $c ) = @_;
-    $c->res->body( 'one' );
-}
-
-1;