diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-02-19 21:17:10 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-02-19 21:17:10 +0000 |
commit | 9b924220109ab5ca4ffe2f23c240236dc5a723c2 (patch) | |
tree | 69c11d167bab8903a99a104bdf2a59ab8f7343b6 /lib/Math/BigInt/t/use_mbfw.t | |
parent | b6a15bc5202dd52395ce566b43e1490d38dc2141 (diff) | |
download | perl-9b924220109ab5ca4ffe2f23c240236dc5a723c2.tar.gz |
Upgrade to prereleases of Math::BigInt 1.70 and
Math::BigRat 0.12, by Tels.
p4raw-id: //depot/perl@22344
Diffstat (limited to 'lib/Math/BigInt/t/use_mbfw.t')
-rw-r--r-- | lib/Math/BigInt/t/use_mbfw.t | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Math/BigInt/t/use_mbfw.t b/lib/Math/BigInt/t/use_mbfw.t index d58de047f2..c6a047143e 100644 --- a/lib/Math/BigInt/t/use_mbfw.t +++ b/lib/Math/BigInt/t/use_mbfw.t @@ -29,7 +29,7 @@ BEGIN } print "# INC = @INC\n"; - plan tests => 3; + plan tests => 2; } @@ -41,12 +41,12 @@ BEGIN use Math::BigFloat with => 'Math::BigInt::Subclass', lib => 'BareCalc'; -ok (Math::BigFloat->config()->{with}, 'Math::BigInt::Subclass' ); +ok (Math::BigFloat->config()->{with}, 'Math::BigInt::BareCalc' ); -ok ($Math::BigInt::Subclass::lib, 'BareCalc' ); +# ok ($Math::BigInt::Subclass::lib, 'BareCalc' ); # it never arrives here, but that is a design decision in SubClass -ok (Math::BigInt->config->{lib}, 'Math::BigInt::Calc' ); +ok (Math::BigInt->config->{lib}, 'Math::BigInt::BareCalc' ); # all tests done |