Trying to refresh branch
[catagits/Catalyst-Runtime.git] / trunk / t / lib / TestApp / Controller / Engine / Response / Print.pm
diff --git a/trunk/t/lib/TestApp/Controller/Engine/Response/Print.pm b/trunk/t/lib/TestApp/Controller/Engine/Response/Print.pm
deleted file mode 100644 (file)
index 8d986f8..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-package TestApp::Controller::Engine::Response::Print;
-
-use strict;
-use base 'Catalyst::Controller';
-
-sub one :Relative {
-    my ( $self, $c ) = @_;
-    
-    $c->res->print("foo");
-}
-
-sub two :Relative {
-    my ( $self, $c ) = @_;
-
-    $c->res->print(qw/foo bar/);
-}
-
-sub three :Relative {
-    my ( $self, $c ) = @_;
-
-    local $, = ',';
-    $c->res->print(qw/foo bar baz/);
-}
-
-1;