Switched to Module::Install
[catagits/Catalyst-Runtime.git] / t / live / lib / TestApp / Controller / Index.pm
diff --git a/t/live/lib/TestApp/Controller/Index.pm b/t/live/lib/TestApp/Controller/Index.pm
deleted file mode 100644 (file)
index 9b655d2..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-package TestApp::Controller::Index;
-
-use strict;
-use base 'Catalyst::Base';
-
-sub index : Private {
-    my ( $self, $c ) = @_;
-    $c->res->body( 'Index index' );
-}
-
-1;