Re: [PATCH] 'make clobber' on Cygwin broken
[p5sagit/p5-mst-13.2.git] / lib / Math / BigInt / t / sub_mbf.t
CommitLineData
ee15d750 1#!/usr/bin/perl -w
2
3use Test;
4use strict;
5
6BEGIN
7 {
e745a66c 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
edea50ec 14 @INC = qw(../t/lib);
e745a66c 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
61f5c3f5 29 plan tests => 1528
30 + 4; # + 4 own tests
ee15d750 31 }
32
dccbb853 33use Math::BigFloat::Subclass;
ee15d750 34
35use vars qw ($class $try $x $y $f @args $ans $ans1 $ans1_str $setup);
dccbb853 36$class = "Math::BigFloat::Subclass";
ee15d750 37
38require 'bigfltpm.inc'; # perform same tests as bigfltpm
39
40# Now do custom tests for Subclass itself
dccbb853 41my $ms = $class->new(23);
ee15d750 42print "# Missing custom attribute \$ms->{_custom}" if !ok (1, $ms->{_custom});
43
44use Math::BigFloat;
45
dccbb853 46my $bf = Math::BigFloat->new(23); # same as other
ee15d750 47$ms += $bf;
48print "# Tried: \$ms += \$bf, got $ms" if !ok (46, $ms);
49print "# Missing custom attribute \$ms->{_custom}" if !ok (1, $ms->{_custom});
50print "# Wrong class: ref(\$ms) was ".ref($ms) if !ok ($class, ref($ms));