Upgrade to Math::BigInt 1.56, Math::BigRat 0.05,
[p5sagit/p5-mst-13.2.git] / lib / Math / BigInt / t / constant.t
CommitLineData
b3abae2a 1#!/usr/bin/perl -w
2
3use strict;
4use Test;
5
6BEGIN
7 {
8 $| = 1;
9 chdir 't' if -d 't';
10 unshift @INC, '../lib'; # for running manually
56b9c951 11 plan tests => 7;
b3abae2a 12 }
13
14use Math::BigInt ':constant';
15
16ok (2 ** 255,'57896044618658097711785492504343953926634992332820282019728792003956564819968');
17
56b9c951 18{
8f675a64 19 no warnings 'portable';
20# hexadecimal constants
21ok (0x123456789012345678901234567890,
22 Math::BigInt->new('0x123456789012345678901234567890'));
23# binary constants
24ok (0b01010100011001010110110001110011010010010110000101101101,
25 Math::BigInt->new(
56b9c951 26 '0b01010100011001010110110001110011010010010110000101101101'));
27}
28
b3abae2a 29use Math::BigFloat ':constant';
30ok (1.0 / 3.0, '0.3333333333333333333333333333333333333333');
31
32# stress-test Math::BigFloat->import()
33
34Math::BigFloat->import( qw/:constant/ );
35ok (1,1);
36
37Math::BigFloat->import( qw/:constant upgrade Math::BigRat/ );
38ok (1,1);
39
40Math::BigFloat->import( qw/upgrade Math::BigRat :constant/ );
41ok (1,1);
42
43# all tests done
44