blob: 11b3222ea15a1332ac37040633b7b78f4fd82628 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/perl -w
use strict;
use Test::More tests => 2319;
BEGIN { unshift @INC, 't'; }
use Math::BigFloat lib => 'BareCalc';
use vars qw ($class $try $x $y $f @args $ans $ans1 $ans1_str $setup $CL);
$class = "Math::BigFloat";
$CL = "Math::BigInt::BareCalc";
require 't/bigfltpm.inc'; # all tests here for sharing
|