blob: 04512abd6c03cc43592c6f7af97d661629745e25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/perl -w
# test that the new alias names work
use strict;
use Test::More tests => 6;
BEGIN { unshift @INC, 't'; }
use Math::BigInt::Subclass;
use vars qw/$CL $x/;
$CL = 'Math::BigInt::Subclass';
require 't/alias.inc';
|