0dd429ce184232989b773a9b94c0e7643b71366a
[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   chdir 't' if -d 't';
10   plan tests => 1;
11   };
12
13 use Math::BigInt::FastCalc;
14
15 ok(1);          # could load it?
16