Trying to unfuck this branch
[catagits/Catalyst-Runtime.git] / trunk / t / lib / TestApp / Controller / Action / Private.pm
diff --git a/trunk/t/lib/TestApp/Controller/Action/Private.pm b/trunk/t/lib/TestApp/Controller/Action/Private.pm
deleted file mode 100644 (file)
index 9d384ed..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-package TestApp::Controller::Action::Private;
-
-use strict;
-use base 'TestApp::Controller::Action';
-
-sub default : Private {
-    my ( $self, $c ) = @_;
-    $c->res->output('access denied');
-}
-
-sub one : Private {
-    my ( $self, $c ) = @_;
-    $c->res->output('access allowed');
-}
-
-sub two : Private {
-    my ( $self, $c ) = @_;
-    $c->res->output('access allowed');
-}
-
-sub three : Private {
-    my ( $self, $c ) = @_;
-    $c->res->output('access allowed');
-}
-
-sub four : Private {
-    my ( $self, $c ) = @_;
-    $c->res->output('access allowed');
-}
-
-sub five : Private {
-    my ( $self, $c ) = @_;
-    $c->res->output('access allowed');
-}
-
-1;