blob: 7c24404738ab85b3c94e1219196038a535e45e46 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!perl
use strict;
use warnings;
use Test::More tests => 4038; # tests in require'd file
use lib 't';
use Math::BigInt lib => 'BareCalc';
print "# ", Math::BigInt->config('lib'), "\n";
our ($CLASS, $LIB);
$CLASS = "Math::BigInt";
$LIB = "Math::BigInt::BareCalc"; # backend
require './t/bigintpm.inc'; # perform same tests as bigintpm.t
|