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:
parent
a0a9703a9c
commit
51f8f7a7c1
1 changed files with 2 additions and 2 deletions
|
@ -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';
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue