This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Upgrade Math::BigRat from version 0.260802 to 0.260804
[perl5.git] / cpan / Math-BigRat / t / requirer.t
CommitLineData
6320cdc0 1#!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