Subject: | caller request object stompification |
$c->subreq('/someaction') modifies $c->req in the caller.
for example
sub one:Local {
my ($self, $c) = @_;
#$c->req->uri eq '/one'
$c->subreq('/two');
#$c->req->uri now eq '/two' my expectation would be that $c is not
modified in the caller's context
}
committed a test for this in svn [14306]