Update to Getopt::Long 2.23_05, from Johan Vromans.
[p5sagit/p5-mst-13.2.git] / t / lib / gol-basic.t
1 #!./perl -w
2
3 use Getopt::Long qw(:config no_ignore_case);
4 die("Getopt::Long version 2.23_03 required--this is only version ".
5     $Getopt::Long::VERSION)
6   unless $Getopt::Long::VERSION ge "2.23_03";
7
8 print "1..9\n";
9
10 @ARGV = qw(-Foo -baR --foo bar);
11 undef $opt_baR;
12 undef $opt_bar;
13 print "ok 1\n" if GetOptions ("foo", "Foo=s");
14 print ((defined $opt_foo)   ? "" : "not ", "ok 2\n");
15 print (($opt_foo == 1)      ? "" : "not ", "ok 3\n");
16 print ((defined $opt_Foo)   ? "" : "not ", "ok 4\n");
17 print (($opt_Foo eq "-baR") ? "" : "not ", "ok 5\n");
18 print ((@ARGV == 1)         ? "" : "not ", "ok 6\n");
19 print (($ARGV[0] eq "bar")  ? "" : "not ", "ok 7\n");
20 print (!(defined $opt_baR)  ? "" : "not ", "ok 8\n");
21 print (!(defined $opt_bar)  ? "" : "not ", "ok 9\n");