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

use Test::NoWarnings

This commit is contained in:
Kenichi Ishigaki 2012-10-10 16:05:18 +00:00
parent 8a418482dd
commit 45c0a056d1

View file

@ -7,7 +7,8 @@ BEGIN {
}
use t::lib::Test qw/connect_ok/;
use Test::More;
use Test::More tests => 5;
use Test::NoWarnings;
my $dbh = connect_ok();
@ -25,5 +26,3 @@ $dbh->do("\nCOMMIT");
is $dbh->{AutoCommit}, 1,
'AutoCommit=1 after "\nCOMMIT"';
done_testing;