Trying to refresh branch
[catagits/Catalyst-Runtime.git] / trunk / t / lib / DeprecatedTestApp / C / Root.pm
diff --git a/trunk/t/lib/DeprecatedTestApp/C/Root.pm b/trunk/t/lib/DeprecatedTestApp/C/Root.pm
deleted file mode 100644 (file)
index 9a3e1d0..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-package DeprecatedTestApp::C::Root;
-use strict;
-use warnings;
-use base qw/Catalyst::Controller/;
-
-__PACKAGE__->config->{namespace} = '';
-
-sub index : Private {
-    my ( $self, $c ) = @_;
-    $c->res->body('root index');
-}
-
-sub req_user : Local {
-    my ( $self, $c ) = @_;
-    $c->res->body('REMOTE_USER = ' . $c->req->user);
-}
-
-1;