Get some of the optional_* tests working from dirs with spaces (RT #26455)
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / ForwardTo.pm
CommitLineData
0129cd14 1package TestApp::Controller::Action::ForwardTo;
2
3use strict;
4use base 'TestApp::Controller::Action';
5
6sub uri_check : Private {
7 my ( $self, $c ) = @_;
8 $c->res->body( $c->uri_for('foo/bar') );
9}
10
111;