summaryrefslogtreecommitdiff
path: root/cpan/Math-BigInt/t/calling-lib2.t
blob: 1d8a5dde3195d17ee0e13cc0cb7e9716799925b4 (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" => "$class\::Scalar";|
     . q| $x = 2**10; $x = "$x";|;
$expected = eval $try;
is($expected, "1024", $try);