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 / rt121139.t
diff --git a/cpan/Math-BigRat/t/rt121139.t b/cpan/Math-BigRat/t/rt121139.t
deleted file mode 100644 (file)
index 97f28a9..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-# -*- mode: perl; -*-
-
-# check for cpan rt #121139
-
-use strict;
-use warnings;
-use Test::More tests => 2;
-use Math::BigRat;
-
-my $a = Math::BigRat->new('3/2');
-my $x = Math::BigRat->new('2/3');
-is("$a", "3/2");
-
-my $y = $a;
-$y = $x * $y;
-is("$a", "3/2");