summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortokuhirom <tokuhirom@gmail.com>2010-05-17 05:52:32 +0900
committertokuhirom <tokuhirom@gmail.com>2010-05-17 05:52:32 +0900
commit6ea75f3a9f1888d70bfaf97468922e30a7e7e661 (patch)
tree64e82a1373316762d69737dc05f7ab75152d47ae
parentf51123d009ebe285b91442d03e220560ee75ef21 (diff)
downloadmsgpack-python-6ea75f3a9f1888d70bfaf97468922e30a7e7e661.tar.gz
Perl: do not use done_testing
-rw-r--r--perl/t/06_stream_unpack2.t3
1 files changed, 1 insertions, 2 deletions
diff --git a/perl/t/06_stream_unpack2.t b/perl/t/06_stream_unpack2.t
index dc82c41..eaf2cb4 100644
--- a/perl/t/06_stream_unpack2.t
+++ b/perl/t/06_stream_unpack2.t
@@ -1,7 +1,7 @@
use strict;
use warnings;
use Data::MessagePack;
-use Test::More;
+use Test::More tests => 6;
my $input = [(undef)x16];
my $packed = Data::MessagePack->pack($input);
@@ -22,5 +22,4 @@ is_deeply(Data::MessagePack->unpack($packed), $input);
is_deeply $up->data, $input;
}
-done_testing;