blob: 976cb0c2637223fc6de91c5294cee0b8cb6f3ff9 (
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 bzero() works
use strict;
use warnings;
use Test::More tests => 1;
require Math::BigFloat;
my $x = Math::BigFloat->bzero(); $x++;
is($x, 1, '$x is 1');
# all tests done
|