xref: /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Math/BigInt/t/upgradef.t (revision 0:68f95e015346)
1#!/usr/bin/perl -w
2
3use Test;
4use strict;
5
6BEGIN
7  {
8  $| = 1;
9  # to locate the testing files
10  my $location = $0; $location =~ s/upgradef.t//i;
11  if ($ENV{PERL_CORE})
12    {
13    # testing with the core distribution
14    @INC = qw(../t/lib);
15    }
16  unshift @INC, qw(../lib);     # to locate the modules
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 => 0
30   + 6;			# our own tests
31  }
32
33###############################################################################
34package Math::BigFloat::Test;
35
36use Math::BigFloat;
37require Exporter;
38use vars qw/@ISA/;
39@ISA = qw/Exporter Math::BigFloat/;
40
41use overload;
42
43sub isa
44  {
45  my ($self,$class) = @_;
46  return if $class =~ /^Math::Big(Int|Float)/;	# we aren't one of these
47  UNIVERSAL::isa($self,$class);
48  }
49
50sub bmul
51  {
52  return __PACKAGE__->new(123);
53  }
54
55sub badd
56  {
57  return __PACKAGE__->new(321);
58  }
59
60###############################################################################
61package main;
62
63# use Math::BigInt upgrade => 'Math::BigFloat';
64use Math::BigFloat upgrade => 'Math::BigFloat::Test';
65
66use vars qw ($scale $class $try $x $y $z $f @args $ans $ans1 $ans1_str $setup
67             $ECL $CL);
68$class = "Math::BigFloat";
69$CL = "Math::BigInt::Calc";
70$ECL = "Math::BigFloat::Test";
71
72ok (Math::BigFloat->upgrade(),$ECL);
73ok (Math::BigFloat->downgrade()||'','');
74
75$x = $class->new(123); $y = $ECL->new(123); $z = $x->bmul($y);
76ok (ref($z),$ECL); ok ($z,123);
77
78$x = $class->new(123); $y = $ECL->new(123); $z = $x->badd($y);
79ok (ref($z),$ECL); ok ($z,321);
80
81
82
83# not yet:
84# require 'upgrade.inc';	# all tests here for sharing
85