Upgrade to Math::BigInt 1.55, from Tels.
[p5sagit/p5-mst-13.2.git] / lib / Math / BigInt / t / constant.t
index ef3e223..3c9b13f 100644 (file)
@@ -8,13 +8,24 @@ BEGIN
   $| = 1;
   chdir 't' if -d 't';
   unshift @INC, '../lib'; # for running manually
-  plan tests => 5;
+  plan tests => 7;
   } 
 
 use Math::BigInt ':constant';
 
 ok (2 ** 255,'57896044618658097711785492504343953926634992332820282019728792003956564819968');
 
+{
+    no warnings 'portable';
+    # hexadecimal constants
+    ok (0x123456789012345678901234567890,
+      Math::BigInt->new('0x123456789012345678901234567890'));
+    # binary constants
+    ok (0b01010100011001010110110001110011010010010110000101101101,
+      Math::BigInt->new(
+     '0b01010100011001010110110001110011010010010110000101101101'));
+}
+
 use Math::BigFloat ':constant';
 ok (1.0 / 3.0, '0.3333333333333333333333333333333333333333');