1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
#! perl
# Verify that loading Getopt::Long::Parser also loads Getopt::Long.
BEGIN {
if( $ENV{PERL_CORE} ) {
chdir 't';
@INC = ('../lib', 'lib');
}
else {
unshift @INC, 't/lib';
}
}
use strict;
use warnings;
use Test::More tests => 3;
use_ok("Getopt::Long::Parser");
# Getopt::Long should have been loaded as well.
ok( defined $Getopt::Long::VERSION,
"Getopt::Long::Parser loads Getopt::Long" );
# Verify version match.
is( $Getopt::Long::VERSION, $Getopt::Long::Parser::VERSION,
"Parser version matches" );
|