This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Document string- and number-specific bitops in perlop
[perl5.git] / dist / Math-BigInt / t / sub_mif.t
CommitLineData
61f5c3f5
T
1#!/usr/bin/perl -w
2
c4a6f826 3# test rounding, accuracy, precision and fallback, round_mode and mixing
61f5c3f5
T
4# of classes
5
6use strict;
3167abe5 7use Test::More tests => 684;
61f5c3f5 8
3167abe5 9BEGIN { unshift @INC, 't'; }
61f5c3f5
T
10
11use Math::BigInt::Subclass;
12use Math::BigFloat::Subclass;
13
14use vars qw/$mbi $mbf/;
15
16$mbi = 'Math::BigInt::Subclass';
17$mbf = 'Math::BigFloat::Subclass';
18
4aa37faf 19require 't/mbimbf.inc';