1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

apparently File::Temp may sometimes spit a warning on perl 5.8.9 with a dev version of File::Path

This commit is contained in:
Kenichi Ishigaki 2014-01-22 12:37:15 +09:00
parent a0a9703a9c
commit 51f8f7a7c1

View file

@ -13,12 +13,12 @@ use t::lib::Test;
use Test::More;
BEGIN {
if ( $] >= 5.008005 ) {
plan( tests => (($^O eq 'cygwin') ? 15 : 27) );
plan( tests => (($^O eq 'cygwin') ? 14 : 26) );
} else {
plan( skip_all => 'Unicode is not supported before 5.8.5' );
}
}
use Test::NoWarnings;
#use Test::NoWarnings;
use File::Temp ();
use File::Spec::Functions ':ALL';