This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Move Math::BigRat from ext/ to cpan/
[perl5.git] / cpan / Math-BigRat / t / bigfltrt.t
CommitLineData
184f15d5
JH
1#!/usr/bin/perl -w
2
3use Test;
4use strict;
5
6BEGIN
7 {
8 $| = 1;
9 # to locate the testing files
10 my $location = $0; $location =~ s/bigfltrt.t//i;
11 if ($ENV{PERL_CORE})
12 {
13 # testing with the core distribution
8f675a64 14 @INC = qw(../t/lib);
184f15d5
JH
15 }
16 unshift @INC, '../lib';
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
184f15d5
JH
29 plan tests => 1;
30 }
31
116a1b2f 32use Math::BigRat::Test lib => 'Calc'; # test via this Subclass
184f15d5
JH
33
34use vars qw ($class $try $x $y $f @args $ans $ans1 $ans1_str $setup $CL);
35$class = "Math::BigRat::Test";
36$CL = "Math::BigInt::Calc";
37
38ok (1,1);
39
116a1b2f 40# fails still too many tests
9b924220 41#require 'bigfltpm.inc'; # all tests here for sharing