Not that they test much, other than require of the various modules.
# Summary of, well, things.
-use Test;
-BEGIN {plan tests => 2};
+use Test::More tests => 2;
-ok 1;
-
-use Pod::Perldoc;
+BEGIN {
+ use_ok 'Pod::Perldoc';
+}
#chdir "t" if -e "t";
print "# [$x] = [", $INC{$x} || '', "]\n";
}
-ok 1;
+pass();
-use Test;
-BEGIN {plan tests => 2};
-ok 1;
+use Test::More tests => 2;
+pass();
require Pod::Perldoc::ToChecker;
$Pod::Perldoc::VERSION
and print "# Pod::Perldoc version $Pod::Perldoc::VERSION\n";
-ok 1;
+pass();
-use Test;
-BEGIN {plan tests => 3};
-ok 1;
+use Test::More tests => 3;
+pass();
require Pod::Perldoc;
ok($Pod::Perldoc::VERSION)
and print "# Pod::Perldoc version $Pod::Perldoc::VERSION\n";
-ok 1;
+pass();
-use Test;
-BEGIN {plan tests => 2};
-ok 1;
+use Test::More tests => 2;
+pass();
require Pod::Perldoc::ToText;
$Pod::Perldoc::VERSION
and print "# Pod::Perldoc version $Pod::Perldoc::VERSION\n";
-ok 1;
+pass();