2010/2/18 Alberto Simões <[email protected]>: > So, if I change this variable when calling Test::Harness everything > should work fine. > > Is there any easy way to force this under M::B?
Subclass and override ACTION_test
sub ACTION_test {
my $self = shift;
# do %ENV manipulation
$self->SUPER::ACTION_test
}
In general, most custom things you might want to do should get done in
a subclass that override ACTION_* steps.
-- David
