summaryrefslogtreecommitdiff
path: root/cpan/Math-BigInt/t/req_mbf1.t
blob: 74ad48bca0d8dfc80df4c2370032df2ae15c23c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# -*- mode: 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