summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/cpan/Math-BigInt/t/req_mbf1.t
blob: f9b7cc48e22e6b688bee7107ae853acd29740cf8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!perl

# check that simple requiring Math::BigFloat and then bone() works

use strict;
use warnings;

use Test::More tests => 1;

require Math::BigFloat;

my $x = Math::BigFloat->bone();
is($x, 1, '$x is 1');

# all tests done