Upgrade to Math::BigInt 1.48.
[p5sagit/p5-mst-13.2.git] / lib / Math / BigInt / t / sub_mbf.t
1 #!/usr/bin/perl -w
2
3 use Test;
4 use strict;
5
6 BEGIN
7   {
8   $| = 1;
9   # to locate the testing files
10   my $location = $0; $location =~ s/sub_mbf.t//i;
11   if ($ENV{PERL_CORE})
12     {
13     # testing with the core distribution
14     @INC = qw(../t/lib);
15     }
16   unshift @INC, '../lib';
17   if (-d 't')
18     {
19     chdir 't';
20     require File::Spec;
21     unshift @INC, File::Spec->catdir(File::Spec->updir, $location);
22     }
23   else
24     {
25     unshift @INC, $location;
26     }
27   print "# INC = @INC\n"; 
28   
29   plan tests => 1367 + 4;       # + 4 own tests
30   }
31
32 use Math::BigFloat::Subclass;
33
34 use vars qw ($class $try $x $y $f @args $ans $ans1 $ans1_str $setup);
35 $class = "Math::BigFloat::Subclass";
36
37 require 'bigfltpm.inc'; # perform same tests as bigfltpm
38
39 # Now do custom tests for Subclass itself
40 my $ms = $class->new(23);
41 print "# Missing custom attribute \$ms->{_custom}" if !ok (1, $ms->{_custom});
42
43 use Math::BigFloat;
44
45 my $bf = Math::BigFloat->new(23);               # same as other
46 $ms += $bf;
47 print "# Tried: \$ms += \$bf, got $ms" if !ok (46, $ms);
48 print "# Missing custom attribute \$ms->{_custom}" if !ok (1, $ms->{_custom});
49 print "# Wrong class: ref(\$ms) was ".ref($ms) if !ok ($class, ref($ms));