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

###############################################################################

use strict;
use warnings;

use Test::More tests => 7;

my @CLASSES = qw/Math::BigInt Math::BigFloat Math::BigRat/;

# bigrat (bug until v0.15)
use bigrat a => 2;

foreach my $class (@CLASSES) {
    is($class->accuracy(), 2, "$class accuracy = 2");
}

eval { bigrat->import(accuracy => '42') };

is($@, '', 'no error');

foreach my $class (@CLASSES) {
    is($class->accuracy(), 42, "$class accuracy = 42");
}