Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

package TestClass;
use strict;
use parent qw( Test::Class );
use constant fail_if_returned_early => 1;
sub runtests {
my ($self, @args) = @_;
diag sprintf(
'Math::BigInt %s (backend: %s %s)',
$Math::BigInt::VERSION,
Math::BigInt->config('lib'),
Math::BigInt->config('lib_version'),
);
return $self->SUPER::runtests(@args);
}
1;