blob: 76c90699689e41fbd283edb8f2e5bf1969f7ba12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# -*- mode: perl; -*-
use strict;
use warnings;
use Test::More tests => 4278; # 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
|