Subject: | Missing 'use File::Spec' in t/09-cgi.t |
Line 19 of the test script t/09-cgi.t uses the module File::Spec like so:
my $cginame = File::Spec->catfile(dirname($0) . "/09-cgi-script.pl");
But the script does not load File::Spec iteself, it relies that somebody
else loads it. Since bleadperl v5.15.5-165-g951fe22 there is one module
less loading File::Spec, namely IO::File and this leads to File::Spec
not being loaded anymore in this script.
This means that in the next release of perl the loading of File::Spec
will need to be done in this script directly.
HTH, thanks && Regards,