1# -*- mode: perl; -*-
2
3# check that simple requiring Math::BigFloat and then binf() works
4
5use strict;
6use warnings;
7
8use Test::More tests => 1;
9
10require Math::BigFloat;
11
12my $x = Math::BigFloat->binf();
13is($x, 'inf', '$x is inf');
14
15# all tests done
16