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

use strict;
use warnings;
use lib 't';

use Test::More tests => 1;

my ($x, $expected, $try);

my $class = 'Math::BigInt';

# test whether Math::BigInt::Scalar via use works (w/ dff. spellings of calc)

$try = qq|use $class 0, "lib" => "Scalar";|
     . q| $x = 2**10; $x = "$x";|;
$expected = eval $try;
is($expected, "1024", $try);