X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=trunk%2Ft%2Flib%2FTestApp%2FController%2FEngine%2FResponse%2FPrint.pm;fp=trunk%2Ft%2Flib%2FTestApp%2FController%2FEngine%2FResponse%2FPrint.pm;h=0000000000000000000000000000000000000000;hb=2757db2c7c600c8a0b8e2b4366f38c97804c2844;hp=8d986f8215740eb8ed29359ebc81301a98638a02;hpb=ceae39c522c2145a453188867dd581062795ecee;p=catagits%2FCatalyst-Runtime.git 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 index 8d986f8..0000000 --- a/trunk/t/lib/TestApp/Controller/Engine/Response/Print.pm +++ /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;