1*5486feefSafresh1# -*- mode: perl; -*- 2*5486feefSafresh1 3*5486feefSafresh1use strict; 4*5486feefSafresh1use warnings; 5*5486feefSafresh1 6*5486feefSafresh1use lib 't'; 7*5486feefSafresh1 8*5486feefSafresh1use Test::More tests => 899; 9*5486feefSafresh1 10*5486feefSafresh1use Math::BigRat::Subclass lib => 'Calc'; # test via this Subclass 11*5486feefSafresh1 12*5486feefSafresh1our ($CLASS, $LIB); 13*5486feefSafresh1$CLASS = "Math::BigRat::Subclass"; 14*5486feefSafresh1$LIB = "Math::BigInt::Calc"; 15*5486feefSafresh1 16*5486feefSafresh1# fails still too many tests 17*5486feefSafresh1require './t/bigratpm.inc'; # all tests here for sharing 18