- or download this
package Mason::TestHandler;
use strict;
...
# ... VARIOUS ATTEMPTS GO HERE ... #
}
- or download this
...
my $ah = HTML::Mason::ApacheHandler->make_ah($r);
my $mi = $ah->interp;
my $output = $mi->exec($testPath);
- or download this
...
$r->filename($testPath);
my $ah = HTML::Mason::ApacheHandler->make_ah($r);
my $output = $ah->prepare_request($r);
- or download this
...
use HTML::Mason::Interp;
...
my $c = $mi->make_component(comp_file => $testPath );
my $output = $mi->exec($c);