Merged 5.49_01 (r1339) from refactored branch to trunk
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Engine / Response / Redirect.pm
diff --git a/t/lib/TestApp/Controller/Engine/Response/Redirect.pm b/t/lib/TestApp/Controller/Engine/Response/Redirect.pm
deleted file mode 100644 (file)
index f7d7ec0..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-package TestApp::Controller::Engine::Response::Redirect;
-
-use strict;
-use base 'Catalyst::Base';
-
-sub one : Relative {
-    my ( $self, $c ) = @_;
-    $c->response->redirect('/test/writing/is/boring');
-}
-
-sub two : Relative {
-    my ( $self, $c ) = @_;
-    $c->response->redirect('http://www.google.com/');
-}
-
-sub three : Relative {
-    my ( $self, $c ) = @_;
-    $c->response->redirect('http://www.google.com/');
-    $c->response->status(301); # Moved Permanently
-}
-
-sub four : Relative {
-    my ( $self, $c ) = @_;
-    $c->response->redirect('http://www.google.com/');
-    $c->response->status(307); # Temporary Redirect
-}
-
-1;
-