The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package t::MockAPREQ; # mock object for Apache::Request
use strict;
use warnings;

sub new { my $class = shift; bless {@_}, $class; }
sub uri    { $_[0]->{uri} }
sub method { $_[0]->{method} }

1;