File test-more-no-plan.patch of Package perl-Hash-MultiValue
---
t/hash.t | 4 +---
t/multi.t | 2 +-
t/ref.t | 2 --
t/write.t | 5 +----
4 files changed, 3 insertions(+), 10 deletions(-)
Index: Hash-MultiValue-0.08/t/hash.t
===================================================================
--- Hash-MultiValue-0.08.orig/t/hash.t 2010-01-30 17:15:59.000000000 -0500
+++ Hash-MultiValue-0.08/t/hash.t 2010-09-21 21:18:29.880648006 -0400
@@ -1,5 +1,5 @@
use strict;
-use Test::More;
+use Test::More qw(no_plan);
use Hash::MultiValue;
my $hash = Hash::MultiValue->new(
@@ -62,5 +62,3 @@
is_deeply [ $hash->keys ], [ qw(foo foo bar baz) ];
is_deeply [ $hash->values ], [ qw(b c bba 34) ];
}
-
-done_testing;
Index: Hash-MultiValue-0.08/t/multi.t
===================================================================
--- Hash-MultiValue-0.08.orig/t/multi.t 2010-01-30 17:15:59.000000000 -0500
+++ Hash-MultiValue-0.08/t/multi.t 2010-09-21 21:18:29.880648006 -0400
@@ -24,4 +24,4 @@
};
ok $@;
-done_testing;
+done_testing();
Index: Hash-MultiValue-0.08/t/ref.t
===================================================================
--- Hash-MultiValue-0.08.orig/t/ref.t 2010-02-11 06:04:15.000000000 -0500
+++ Hash-MultiValue-0.08/t/ref.t 2010-09-21 21:18:51.605659147 -0400
@@ -9,5 +9,3 @@
my $h = Hash::MultiValue->new;
is ref $h, 'HASH';
-done_testing;
-
Index: Hash-MultiValue-0.08/t/write.t
===================================================================
--- Hash-MultiValue-0.08.orig/t/write.t 2009-12-16 15:43:35.000000000 -0500
+++ Hash-MultiValue-0.08/t/write.t 2010-09-21 21:18:29.884649263 -0400
@@ -1,5 +1,5 @@
use strict;
-use Test::More;
+use Test::More qw(no_plan);
use Hash::MultiValue;
my $hash = Hash::MultiValue->new(
@@ -26,6 +26,3 @@
$hash->clear;
is_deeply $hash, {};
isa_ok $hash, 'Hash::MultiValue';
-
-
-done_testing;