whitespace cleanup
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Engine / Response / Print.pm
CommitLineData
e4cc83b2 1package TestApp::Controller::Engine::Response::Print;
2
3use strict;
c057ae86 4use base 'Catalyst::Controller';
e4cc83b2 5
6sub one :Relative {
7 my ( $self, $c ) = @_;
88e5a8b0 8
e4cc83b2 9 $c->res->print("foo");
10}
11
12sub two :Relative {
13 my ( $self, $c ) = @_;
14
15 $c->res->print(qw/foo bar/);
16}
17
18sub three :Relative {
19 my ( $self, $c ) = @_;
20
21 local $, = ',';
fe3083a8 22 local $\ = ':';
e4cc83b2 23 $c->res->print(qw/foo bar baz/);
24}
25
fe3083a8 26
e4cc83b2 271;