The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#!/usr/bin/perl -w
use strict;
my $tests;
BEGIN
{
$tests = 3;
plan tests => $tests;
chdir 't' if -d 't';
use lib '../lib';
};
SKIP:
{
skip( 'Test::Pod not installed on this system', $tests )
unless do
{
eval "use Test::Pod;";
$@ ? 0 : 1;
};
pod_file_ok( '../lib/bignum.pm' );
pod_file_ok( '../lib/bigrat.pm' );
pod_file_ok( '../lib/bigint.pm' );
}