xref: /openbsd-src/gnu/usr.bin/perl/cpan/Math-BigInt-FastCalc/t/bootstrap.t (revision d13be5d47e4149db2549a9828e244d59dbc43f15)
1#!/usr/bin/perl -w
2
3use Test;
4BEGIN
5  {
6  $| = 1;
7  unshift @INC, '../blib/lib';
8  unshift @INC, '../blib/arch';
9  unshift @INC, '../lib';
10  chdir 't' if -d 't' && !$ENV{PERL_CORE};
11  plan tests => 1;
12  };
13
14use Math::BigInt::FastCalc;
15
16ok(1); 		# could load it?
17
18