xref: /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/bignum/t/option_p.t (revision 0:68f95e015346)
1#!/usr/bin/perl -w
2
3###############################################################################
4
5use Test;
6use strict;
7
8BEGIN
9  {
10  $| = 1;
11  chdir 't' if -d 't';
12  unshift @INC, '../lib';
13  plan tests => 2;
14  }
15
16use bignum p => '12';
17
18ok (Math::BigInt->precision(),12);
19ok (Math::BigFloat->precision(),12);
20
21