This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update bignum, Math::BigInt, Math::BigInt::FastCalc, and Math::BigRat
[perl5.git] / cpan / Math-BigRat / t / requirer.t
CommitLineData
6853e8af 1# -*- mode: perl; -*-
990fb837
RGS
2
3# check that simple requiring BigRat works
4
5use strict;
11c955be
SH
6use warnings;
7
c32198f6 8use Test::More tests => 1;
990fb837
RGS
9
10my ($x);
11
11c955be
SH
12require Math::BigRat;
13$x = Math::BigRat->new(1);
14++$x;
990fb837 15
11c955be 16is($x, 2, '$x got successfully modified');
990fb837
RGS
17
18# all tests done