Remove from MANIFEST the files deleted by 8838b377ac70b16b.
[p5sagit/p5-mst-13.2.git] / ext / Math-BigRat / t / requirer.t
1 #!/usr/bin/perl -w
2
3 # check that simple requiring BigRat works
4
5 use strict;
6 use Test::More;
7
8 BEGIN
9   {
10   $| = 1;
11   # to locate the testing files
12   my $location = $0; $location =~ s/requirer.t//i;
13   if ($ENV{PERL_CORE})
14     {
15     # testing with the core distribution
16     @INC = qw(../t/lib);
17     }
18   unshift @INC, qw(../lib);     # to locate the modules
19   if (-d 't')
20     {
21     chdir 't';
22     require File::Spec;
23     unshift @INC, File::Spec->catdir(File::Spec->updir, $location);
24     }
25   else
26     {
27     unshift @INC, $location;
28     }
29   print "# INC = @INC\n";
30
31   plan tests => 1;
32   } 
33
34 my ($x);
35
36 require Math::BigRat; $x = Math::BigRat->new(1); ++$x;
37
38 is ($x, 2, '$x got successfully modified');
39
40 # all tests done
41