The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

# check that simple requiring BigRat works

use strict;
use warnings;

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