Revert change #30530, following Jan's advice
[p5sagit/p5-mst-13.2.git] / lib / bignum / t / bigrat.t
1 #!/usr/bin/perl -w
2
3 ###############################################################################
4
5 use Test;
6 use strict;
7
8 BEGIN
9   {
10   $| = 1;
11   chdir 't' if -d 't';
12   unshift @INC, '../lib';
13   plan tests => 25;
14   }
15
16 use bigrat;
17
18 ###############################################################################
19 # general tests
20
21 my $x = 5; ok (ref($x) =~ /^Math::BigInt/);             # :constant
22
23 # todo:  ok (2 + 2.5,4.5);                              # should still work
24 # todo: $x = 2 + 3.5; ok (ref($x),'Math::BigFloat');
25
26 $x = 2 ** 255; ok (ref($x) =~ /^Math::BigInt/);
27
28 # see if Math::BigRat constant works
29 ok (1/3, '1/3');
30 ok (1/4+1/3,'7/12');
31 ok (5/7+3/7,'8/7');
32
33 ok (3/7+1,'10/7');
34 ok (3/7+1.1,'107/70');
35 ok (3/7+3/7,'6/7');
36
37 ok (3/7-1,'-4/7');
38 ok (3/7-1.1,'-47/70');
39 ok (3/7-2/7,'1/7');
40
41 # fails ?
42 # ok (1+3/7,'10/7');
43
44 ok (1.1+3/7,'107/70');
45 ok (3/7*5/7,'15/49');
46 ok (3/7 / (5/7),'3/5');
47 ok (3/7 / 1,'3/7');
48 ok (3/7 / 1.5,'2/7');
49
50 ###############################################################################
51 # accurarcy and precision
52
53 ok_undef (bigrat->accuracy());
54 ok (bigrat->accuracy(12),12);
55 ok (bigrat->accuracy(),12);
56
57 ok_undef (bigrat->precision());
58 ok (bigrat->precision(12),12);
59 ok (bigrat->precision(),12);
60
61 ok (bigrat->round_mode(),'even');
62 ok (bigrat->round_mode('odd'),'odd');
63 ok (bigrat->round_mode(),'odd');
64
65 ###############################################################################
66 ###############################################################################
67 # Perl 5.005 does not like ok ($x,undef)
68
69 sub ok_undef
70   {
71   my $x = shift;
72
73   ok (1,1) and return if !defined $x;
74   ok ($x,'undef');
75   }