summaryrefslogtreecommitdiff
path: root/lib/bignum/t/option_a.t
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bignum/t/option_a.t')
-rw-r--r--lib/bignum/t/option_a.t31
1 files changed, 0 insertions, 31 deletions
diff --git a/lib/bignum/t/option_a.t b/lib/bignum/t/option_a.t
deleted file mode 100644
index 2086f9a8d8..0000000000
--- a/lib/bignum/t/option_a.t
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/perl -w
-
-###############################################################################
-
-use Test::More;
-use strict;
-
-BEGIN
- {
- $| = 1;
- chdir 't' if -d 't';
- unshift @INC, '../lib';
- plan tests => 4;
- }
-
-use bignum a => '12';
-
-my @C = qw/Math::BigInt Math::BigFloat/;
-
-foreach my $c (@C)
- {
- is ($c->accuracy(),12, "$c accuracy = 12");
- }
-
-bignum->import( accuracy => '23');
-
-foreach my $c (@C)
- {
- is ($c->accuracy(), 23, "$c accuracy = 23");
- }
-