1#!perl 2 3# test rounding, accuracy, precision and fallback, round_mode and mixing 4# of classes under Math::BigInt::BareCalc 5 6use strict; 7use warnings; 8 9use Test::More tests => 684 # tests in require'd file 10 + 1; # tests in this file 11 12use lib 't'; 13 14use Math::BigInt lib => 'BareCalc'; 15use Math::BigFloat lib => 'BareCalc'; 16 17our ($mbi, $mbf); 18$mbi = 'Math::BigInt'; 19$mbf = 'Math::BigFloat'; 20 21is(Math::BigInt->config()->{lib}, 'Math::BigInt::BareCalc', 22 'Math::BigInt->config()->{lib}'); 23 24require 't/mbimbf.inc'; 25