From 6afbdb1ce0b2259a92e7cc2dfbf587d20ef2cdc0 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Tue, 27 Aug 2013 12:17:22 +0900 Subject: [PATCH] don't use done_testing when Test::More 0.47 is required --- t/53_status.t | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/t/53_status.t b/t/53_status.t index 141e4ec..f69db80 100644 --- a/t/53_status.t +++ b/t/53_status.t @@ -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;