Merged 5.49_01 (r1339) from refactored branch to trunk
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Engine / Response / Cookies.pm
diff --git a/t/lib/TestApp/Controller/Engine/Response/Cookies.pm b/t/lib/TestApp/Controller/Engine/Response/Cookies.pm
deleted file mode 100644 (file)
index a66fdca..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-package TestApp::Controller::Engine::Response::Cookies;
-
-use strict;
-use base 'Catalyst::Base';
-
-sub one : Relative {
-    my ( $self, $c ) = @_;
-    $c->res->cookies->{Catalyst} = { value => 'Cool',     path => '/' };
-    $c->res->cookies->{Cool}     = { value => 'Catalyst', path => '/' };
-    $c->forward('TestApp::View::Dump::Request');
-}
-
-sub two : Relative {
-    my ( $self, $c ) = @_;
-    $c->res->cookies->{Catalyst} = { value => 'Cool',     path => '/' };
-    $c->res->cookies->{Cool}     = { value => 'Catalyst', path => '/' };
-    $c->res->redirect('http://www.google.com/');
-}
-
-1;