Catalyst-Engine-Apache
view release on metacpan or search on metacpan
t/lib/TestApp/Controller/Engine/Request/URI.pm view on Meta::CPAN
$c->res->header( 'X-Catalyst-Param-a' => $query{ a } );
$c->forward('TestApp::View::Dump::Request');
}
sub uri_with_utf8 : Local {
my ( $self, $c ) = @_;
# change the current uri
my $uri = $c->req->uri_with( { unicode => "\x{2620}" } );
$c->res->header( 'X-Catalyst-uri-with' => "$uri" );
$c->forward('TestApp::View::Dump::Request');
}
sub uri_with_undef : Local {
my ( $self, $c ) = @_;
my $warnings = 0;
( run in 0.644 second using v1.01-cache-2.11-cpan-88abd93f124 )