Switched to Module::Install
[catagits/Catalyst-Runtime.git] / t / live / lib / TestApp / Controller / Action / Begin.pm
diff --git a/t/live/lib/TestApp/Controller/Action/Begin.pm b/t/live/lib/TestApp/Controller/Action/Begin.pm
deleted file mode 100644 (file)
index 5a96c91..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-package TestApp::Controller::Action::Begin;
-
-use strict;
-use base 'TestApp::Controller::Action';
-
-sub begin : Private {
-    my ( $self, $c ) = @_;
-    $self->SUPER::begin($c);
-}
-
-sub default : Private {
-    my ( $self, $c ) = @_;
-    $c->forward('TestApp::View::Dump::Request');
-}
-
-1;