diff options
Diffstat (limited to 'ext/bignum/t/brinfnan.t')
-rw-r--r-- | ext/bignum/t/brinfnan.t | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/ext/bignum/t/brinfnan.t b/ext/bignum/t/brinfnan.t new file mode 100644 index 0000000000..286adbc0ca --- /dev/null +++ b/ext/bignum/t/brinfnan.t @@ -0,0 +1,22 @@ +#!/usr/bin/perl -w + +############################################################################### + +use Test; +use strict; + +BEGIN + { + $| = 1; + chdir 't' if -d 't'; + unshift @INC, '../lib'; + unshift @INC, '../lib/bignum/t' if $ENV{PERL_CORE}; + plan tests => 26; + } + +use bigrat; + +my ($x); + +require "infnan.inc"; + |