summaryrefslogtreecommitdiff
path: root/cpan/Math-BigInt/t/require.t
blob: 32fde97158d1d9586bdca8aac7982245c0ba2461 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- mode: perl; -*-

# check that simple requiring Math::BigInt works

use strict;
use warnings;

use Test::More tests => 1;

require Math::BigInt;

my $x = Math::BigInt->new(1);
++$x;

is($x, 2, '$x is 2');

# all tests done