This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Math::BigRat has blead as its upstream
[perl5.git] / cpan / Math-BigRat / t / requirer.t
diff --git a/cpan/Math-BigRat/t/requirer.t b/cpan/Math-BigRat/t/requirer.t
deleted file mode 100644 (file)
index 488ed1e..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/perl -w
-
-# check that simple requiring BigRat works
-
-use strict;
-use Test::More tests => 1;
-
-my ($x);
-
-require Math::BigRat; $x = Math::BigRat->new(1); ++$x;
-
-is ($x, 2, '$x got successfully modified');
-
-# all tests done
-