summaryrefslogtreecommitdiff
path: root/dist/bignum/t/br_lite.t
blob: fd6325273cd493b523a83670ca9c061aa9848e34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/perl -w

###############################################################################

use strict;
use Test::More;

eval 'require Math::BigInt::Lite;';
if ($@ eq '')
  {
  plan (tests => 1);
  # can use Lite, so let bignum try it
  require bigrat; bigrat->import();
  # can't get to work a ref(1+1) here, presumable because :constant phase
  # already done
  is ($bigrat::_lite,1);
  }
else
  {
  plan (skip_all =>  "no Math::BigInt::Lite");
  }