This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
new perldelta
[perl5.git] / cpan / Math-BigInt / t / sub_mif.t
1 # -*- mode: perl; -*-
2
3 # test rounding, accuracy, precision and fallback, round_mode and mixing
4 # of classes
5
6 use strict;
7 use warnings;
8
9 use Test::More tests => 712;
10
11 use lib 't';
12
13 use Math::BigInt::Subclass;
14 use Math::BigFloat::Subclass;
15
16 our ($mbi, $mbf);
17 $mbi = 'Math::BigInt::Subclass';
18 $mbf = 'Math::BigFloat::Subclass';
19
20 require './t/mbimbf.inc';