Archive-TarGzip
view release on metacpan or search on metacpan
t/Archive/Test/Tech.pm view on Meta::CPAN
return undef;
}
last;
}
}
}
#########
# References to arrays and scalars in the config may
# be transparent.
#
my $current_value = $key_p->{$key};
if( ref($current_value) eq 'SCALAR') {
$current_value = $$current_value;
}
if (defined $value && $key ne 'ntest') {
if( ref($value) eq 'SCALAR' ) {
${$key_p->{$key}} = $$value;
}
else {
t/Archive/Test/Tech.pm view on Meta::CPAN
Test.TESTOUT $Test::TESTOUT read write
Test.TestLevel $Test::TestLevel read write
Test.ONFAIL $Test::ONFAIL read write
Test.TESTERR $Test::TESTERR read write
Skip_Tests # boolean read write
The C<tech_config> subroutine always returns the
C<$old_value> of C<$dot_index> and only writes
the contents if C<$new_value> is defined.
The 'SCALAR' and 'ARRAY' references are transparent.
The C<tech_config> subroutine, when it senses that
the C<$dot_index> is for a 'SCALAR' and 'ARRAY' reference,
will read or write the contents instead of the reference.
The The C<tech_config> subroutine will read 'HASH" references
but will never change them.
The variables for the top level 'Dumper' C<$dot_index> are
established by "L<Data::Dumper|Data::Dumper>" module;
for the top level 'Test', the "L<Test|Test>" module.
( run in 0.542 second using v1.01-cache-2.11-cpan-a1d94b6210f )