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