You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
840 B
31 lines
840 B
14 years ago
|
--- Package-DeprecationManager-0.10/t/basic.t 2010-10-26 18:35:07.000000000 +0100
|
||
|
+++ Package-DeprecationManager-0.10/t/basic.t 2010-10-27 09:25:24.244144715 +0100
|
||
14 years ago
|
@@ -8,6 +8,8 @@ use Test::Requires {
|
||
|
'Test::Output' => '0.16',
|
||
|
};
|
||
|
|
||
|
+plan tests => 25;
|
||
|
+
|
||
|
{
|
||
14 years ago
|
like(
|
||
|
exception {
|
||
|
@@ -218,5 +220,3 @@ use Test::Requires {
|
||
14 years ago
|
q{},
|
||
|
'no deprecation warning for second call to My::Package1::foo()';
|
||
|
}
|
||
|
-
|
||
|
-done_testing();
|
||
14 years ago
|
--- Package-DeprecationManager-0.10/t/compile.t 2010-10-26 18:35:07.000000000 +0100
|
||
|
+++ Package-DeprecationManager-0.10/t/compile.t 2010-10-27 09:24:47.312183595 +0100
|
||
14 years ago
|
@@ -1,9 +1,7 @@
|
||
|
use strict;
|
||
|
use warnings;
|
||
|
|
||
|
-use Test::More;
|
||
|
+use Test::More tests => 1;
|
||
|
|
||
|
eval "require Package::DeprecationManager";
|
||
|
ok( ! $@, 'no errors loading require Package::DeprecationManager' );
|
||
|
-
|
||
|
-done_testing();
|