blob: b84883be4b999ce1b3d2511b63ee1b5397a54759 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/usr/bin/perl -w
use Test::More;
use strict;
BEGIN
{
$| = 1;
chdir 't' if -d 't';
unshift @INC, '../lib';
plan tests => 4;
}
my @C = qw/Math::BigInt Math::BigFloat/;
use bignum p => '12';
foreach my $c (@C)
{
is ($c->precision(),12, "$c precision = 12");
}
bignum->import( p => '42' );
foreach my $c (@C)
{
is ($c->precision(),42, "$c precision = 42");
}
|