###############################################################################
use Test;
use strict;
{
$| = 1;
chdir 't' if -d 't';
}
use bignum;
###############################################################################
# general tests
ok (2 + 2.5,4.5);
ok (2 * 2.1,4.2);
# see if Math::BigInt constant and upgrading works
#ok (2 ** 0.5, 'NaN'); # should be sqrt(2);
# see if Math::BigFloat constant works
# 0123456789 0123456789 <- default 40
# 0123456789 0123456789
###############################################################################
# accurarcy and precision
###############################################################################
###############################################################################
# Perl 5.005 does not like ok ($x,undef)
sub ok_undef
{
my $x = shift;
}