Macro reorganization in the Makefile, so that $(LDLIBPTH) always
[p5sagit/p5-mst-13.2.git] / lib / Math / BigInt / t / require.t
CommitLineData
61f5c3f5 1#!/usr/bin/perl -w
2
3use strict;
4use Test;
5
6BEGIN
7 {
8 $| = 1;
8f675a64 9 # to locate the testing files
10 my $location = $0; $location =~ s/require.t//i;
11 if ($ENV{PERL_CORE})
12 {
13 # testing with the core distribution
14 @INC = qw(../t/lib);
15 }
16 unshift @INC, qw(../lib); # to locate the modules
17 if (-d 't')
18 {
19 chdir 't';
20 require File::Spec;
21 unshift @INC, File::Spec->catdir(File::Spec->updir, $location);
22 }
23 else
24 {
25 unshift @INC, $location;
26 }
27 print "# INC = @INC\n";
28
61f5c3f5 29 plan tests => 1;
30 }
31
8f675a64 32my ($x);
61f5c3f5 33
34require Math::BigInt; $x = Math::BigInt->new(1); ++$x;
35
61f5c3f5 36ok ($x||'undef',2);
37
38# all tests done
39