###############################################################################
use Test;
use strict;
{
$| = 1;
chdir 't' if -d 't';
}
use bigrat;
###############################################################################
# general tests
# todo: ok (2 + 2.5,4.5); # should still work
# todo: $x = 2 + 3.5; ok (ref($x),'Math::BigFloat');
# see if Math::BigRat constant works
# fails ?
# ok (1+3/7,'10/7');
###############################################################################
# accurarcy and precision
###############################################################################
###############################################################################
# Perl 5.005 does not like ok ($x,undef)
sub ok_undef
{
my $x = shift;
}