blob: c6df4ad1f4723f32daff9d7332ab21ad3256398d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/usr/bin/perl -w
###############################################################################
use Test;
use strict;
BEGIN
{
$| = 1;
chdir 't' if -d 't';
unshift @INC, '../lib';
plan tests => 2;
}
use bignum p => '12';
ok (Math::BigInt->precision(),12);
ok (Math::BigFloat->precision(),12);
|