This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Move bignum from dist/ to cpan/
[perl5.git] / dist / bignum / t / ratopt_a.t
diff --git a/dist/bignum/t/ratopt_a.t b/dist/bignum/t/ratopt_a.t
deleted file mode 100644 (file)
index 0d18e87..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/usr/bin/perl -w
-
-###############################################################################
-
-use strict;
-use Test::More tests => 7;
-
-my @C = qw/Math::BigInt Math::BigFloat Math::BigRat/;
-
-# bigrat (bug until v0.15)
-use bigrat a => 2;
-
-foreach my $c (@C)
-  {
-  is ($c->accuracy(), 2, "$c accuracy = 2");
-  }
-
-eval { bigrat->import( accuracy => '42') };
-
-is ($@, '', 'no error');
-
-foreach my $c (@C)
-  {
-  is ($c->accuracy(), 42, "$c accuracy = 42");
-  }
-