diff options
Diffstat (limited to 'dist/Math-BigInt/t/upgrade.t')
-rw-r--r-- | dist/Math-BigInt/t/upgrade.t | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/dist/Math-BigInt/t/upgrade.t b/dist/Math-BigInt/t/upgrade.t index dff9c326b3..a62189cfb2 100644 --- a/dist/Math-BigInt/t/upgrade.t +++ b/dist/Math-BigInt/t/upgrade.t @@ -5,22 +5,6 @@ use strict; BEGIN { - $| = 1; - # to locate the testing files - my $location = $0; $location =~ s/upgrade.t//i; - unshift @INC, qw(../lib); # to locate the modules - if (-d 't') - { - chdir 't'; - require File::Spec; - unshift @INC, File::Spec->catdir(File::Spec->updir, $location); - } - else - { - unshift @INC, $location; - } - print "# INC = @INC\n"; - plan tests => 2112 + 2; # our own tests } @@ -37,4 +21,4 @@ $ECL = "Math::BigFloat"; ok (Math::BigInt->upgrade(),'Math::BigFloat'); ok (Math::BigInt->downgrade()||'',''); -require 'upgrade.inc'; # all tests here for sharing +require 't/upgrade.inc'; # all tests here for sharing |