use Test;
use strict;
{
$| = 1;
# to locate the testing files
my $location = $0; $location =~ s/fallback.t//i;
{
# testing with the core distribution
}
if (-d 't')
{
chdir 't';
}
else
{
}
print "# INC = @INC\n";
}
# The tests below test that cos(BigInt) = cos(Scalar) which is DWIM, but not
# exactly right, ideally cos(BigInt) should truncate to int() and cos(BigFLoat)
# should calculate the result to X digits accuracy. For now, this is better
# than die()ing...