Merged 5.49_01 (r1339) from refactored branch to trunk
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / End.pm
diff --git a/t/lib/TestApp/Controller/Action/End.pm b/t/lib/TestApp/Controller/Action/End.pm
deleted file mode 100644 (file)
index a132c22..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-package TestApp::Controller::Action::End;
-
-use strict;
-use base 'TestApp::Controller::Action';
-
-sub end : Private { 
-    my ( $self, $c ) = @_;
-}
-
-sub default : Private {
-    my ( $self, $c ) = @_;
-    $c->forward('TestApp::View::Dump::Request');
-}
-
-1;