Remove testsuite's assumptions about where it's mounted on a web server
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / ForwardTo.pm
CommitLineData
2f381252 1package TestApp::Controller::Action::ForwardTo;
2
3use strict;
4use base 'TestApp::Controller::Action';
5
6sub uri_check : Private {
7 my ( $self, $c ) = @_;
c09cc357 8 $c->res->body( $c->uri_for('foo/bar')->rel($c->req->base)->path );
2f381252 9}
10
111;