This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
cpan/Math-BigInt - Update to version 2.000000
[perl5.git] / cpan / Math-BigRat / t / hang.t
diff --git a/cpan/Math-BigRat/t/hang.t b/cpan/Math-BigRat/t/hang.t
deleted file mode 100644 (file)
index 3e86377..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-# -*- mode: perl; -*-
-
-# test for bug #34584: hang in exp(1/2)
-
-use strict;
-use warnings;
-
-use Test::More tests => 1;
-
-use Math::BigRat;
-
-my $result = Math::BigRat->new('1/2')->bexp();
-
-is("$result", "824360635350064073424325393907081785827/500000000000000000000000000000000000000",
-   "exp(1/2) worked");
-
-##############################################################################
-# done
-
-1;