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

don't use done_testing when Test::More 0.47 is required

This commit is contained in:
Kenichi Ishigaki 2013-08-27 12:17:22 +09:00
parent 6458091dbc
commit 6afbdb1ce0

View file

@ -8,9 +8,9 @@ BEGIN {
use t::lib::Test qw/connect_ok @CALL_FUNCS/;
use Test::More;
#use Test::NoWarnings;
use Test::NoWarnings;
#plan tests => 6 * @CALL_FUNCS + 1;
plan tests => 8 * @CALL_FUNCS + 1;
my $dbh = connect_ok();
{
@ -49,5 +49,3 @@ for my $func (@CALL_FUNCS) {
ok defined $sort, "num of sort: $sort";
}
}
done_testing;