summaryrefslogtreecommitdiff
path: root/cpan/bignum/t/bninfnan.t
diff options
context:
space:
mode:
Diffstat (limited to 'cpan/bignum/t/bninfnan.t')
-rw-r--r--cpan/bignum/t/bninfnan.t22
1 files changed, 0 insertions, 22 deletions
diff --git a/cpan/bignum/t/bninfnan.t b/cpan/bignum/t/bninfnan.t
deleted file mode 100644
index e437ca116b..0000000000
--- a/cpan/bignum/t/bninfnan.t
+++ /dev/null
@@ -1,22 +0,0 @@
-#!perl
-
-use strict;
-use warnings;
-
-use Test::More tests => 66;
-
-use bignum;
-
-#require "t/infnan.inc";
-
-# The 'bigint'/'bignum'/'bigrat' pragma is lexical, so we can't 'require' or
-# 'do' the included file. Slurp the whole thing and 'eval' it.
-
-my $file = "t/infnan.inc";
-
-open FILE, $file or die "$file: can't open file for reading: $!";
-my $data = do { local $/; <FILE> };
-close FILE or die "$file: can't close file after reading: $!";
-
-eval $data;
-die $@ if $@;