Upgrade to Math-BigInt-FastCalc-0.19
[p5sagit/p5-mst-13.2.git] / ext / Math / BigInt / FastCalc / t / bootstrap.t
1 #!/usr/bin/perl -w
2
3 use Test;
4 BEGIN 
5   {
6   $| = 1;
7   unshift @INC, '../blib/lib';
8   unshift @INC, '../blib/arch';
9   unshift @INC, '../lib';
10   chdir 't' if -d 't';
11   plan tests => 1;
12   };
13
14 use Math::BigInt::FastCalc;
15
16 ok(1);          # could load it?
17