summaryrefslogtreecommitdiff
path: root/cpan/Math-BigInt/t/const_mbf.t
diff options
context:
space:
mode:
Diffstat (limited to 'cpan/Math-BigInt/t/const_mbf.t')
-rw-r--r--cpan/Math-BigInt/t/const_mbf.t16
1 files changed, 0 insertions, 16 deletions
diff --git a/cpan/Math-BigInt/t/const_mbf.t b/cpan/Math-BigInt/t/const_mbf.t
deleted file mode 100644
index 37524a357b..0000000000
--- a/cpan/Math-BigInt/t/const_mbf.t
+++ /dev/null
@@ -1,16 +0,0 @@
-#!perl
-
-# test Math::BigFloat constants alone (w/o Math::BigInt loading)
-
-use strict;
-use warnings;
-
-use Test::More tests => 2;
-
-use Math::BigFloat ':constant';
-
-is(1.0 / 3.0, '0.3333333333333333333333333333333333333333',
- "1.0 / 3.0 = 0.3333333333333333333333333333333333333333");
-
-# Math::BigInt was not loaded with ':constant', so only floats are handled
-is(ref(2 ** 2), '', "2 ** 2 is a scalar");