Upgrade to Getopt::Long 2.32_05
[p5sagit/p5-mst-13.2.git] / lib / Getopt / Long / t / gol-basic.t
CommitLineData
1a505819 1#!./perl -w
2
36e6c0f5 3BEGIN {
10933be5 4 if ($ENV{PERL_CORE}) {
5 @INC = '../lib';
6 chdir 't';
7 }
36e6c0f5 8}
9
10e5c9cc 10use Getopt::Long qw(:config no_ignore_case);
10933be5 11die("Getopt::Long version 2.23_03 required--this is only version ".
10e5c9cc 12 $Getopt::Long::VERSION)
10933be5 13 unless $Getopt::Long::VERSION ge "2.24";
1a505819 14
15print "1..9\n";
16
17@ARGV = qw(-Foo -baR --foo bar);
1a505819 18undef $opt_baR;
19undef $opt_bar;
20print "ok 1\n" if GetOptions ("foo", "Foo=s");
21print ((defined $opt_foo) ? "" : "not ", "ok 2\n");
22print (($opt_foo == 1) ? "" : "not ", "ok 3\n");
23print ((defined $opt_Foo) ? "" : "not ", "ok 4\n");
24print (($opt_Foo eq "-baR") ? "" : "not ", "ok 5\n");
25print ((@ARGV == 1) ? "" : "not ", "ok 6\n");
26print (($ARGV[0] eq "bar") ? "" : "not ", "ok 7\n");
27print (!(defined $opt_baR) ? "" : "not ", "ok 8\n");
28print (!(defined $opt_bar) ? "" : "not ", "ok 9\n");