App-TestOnTap
view release on metacpan or search on metacpan
lib/App/TestOnTap/Config.pm view on Meta::CPAN
# data fields
#
sub __readCfgFile
{
my $self = shift;
my $configFile = shift;
my $ignoreDeps = shift;
read_config($configFile, my $cfg);
# this looks weird, I know - see https://rt.cpan.org/Public/Bug/Display.html?id=56862
#
# I seem to hit the problem with "Warning: Name "Config::Std::Hash::DEMOLISH" used only once..."
# when running a Par::Packer binary but not when as a 'normal' script.
#
# The below incantation seem to get rid of that, at least for now. Let's see if it reappears...
#
my $dummy = *Config::Std::Hash::DEMOLISH;
$dummy = *Config::Std::Hash::DEMOLISH;
# pick the necessities from the blank section
( run in 0.422 second using v1.01-cache-2.11-cpan-64827b87656 )