Trying to unfuck this branch
[catagits/Catalyst-Runtime.git] / trunk / t / lib / TestApp / Controller / Engine / Response / Cookies.pm
diff --git a/trunk/t/lib/TestApp/Controller/Engine/Response/Cookies.pm b/trunk/t/lib/TestApp/Controller/Engine/Response/Cookies.pm
deleted file mode 100644 (file)
index 320c2e1..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-package TestApp::Controller::Engine::Response::Cookies;
-
-use strict;
-use base 'Catalyst::Controller';
-
-sub one : Local {
-    my ( $self, $c ) = @_;
-    $c->res->cookies->{catalyst} = { value => 'cool',     path => '/bah' };
-    $c->res->cookies->{cool}     = { value => 'catalyst', path => '/' };
-    $c->forward('TestApp::View::Dump::Request');
-}
-
-sub two : Local {
-    my ( $self, $c ) = @_;
-    $c->res->cookies->{catalyst} = { value => 'cool',     path => '/bah' };
-    $c->res->cookies->{cool}     = { value => 'catalyst', path => '/' };
-    $c->res->redirect('http://www.google.com/');
-}
-
-sub three : Local {
-    my ( $self, $c ) = @_;
-
-    $c->res->cookies->{object} = CGI::Simple::Cookie->new(
-        -name => "this_is_the_real_name",
-        -value => [qw/foo bar/],
-    );
-
-    $c->res->cookies->{hash} = {
-        value => [qw/a b c/],
-    };
-
-    $c->forward('TestApp::View::Dump::Request');
-}
-
-1;