Integrate perlio:
[p5sagit/p5-mst-13.2.git] / t / lib / gol-oo.t
CommitLineData
10e5c9cc 1#!./perl -w
2
36e6c0f5 3BEGIN {
4 chdir('t') if -d 't';
20822f61 5 @INC = '../lib';
36e6c0f5 6}
7
10e5c9cc 8use Getopt::Long;
8ed53c8c 9die("Getopt::Long version 2.24 required--this is only version ".
10e5c9cc 10 $Getopt::Long::VERSION)
8ed53c8c 11 unless $Getopt::Long::VERSION >= 2.24;
10e5c9cc 12print "1..9\n";
13
14@ARGV = qw(-Foo -baR --foo bar);
15my $p = new Getopt::Long::Parser (config => ["no_ignore_case"]);
16undef $opt_baR;
17undef $opt_bar;
18print "ok 1\n" if $p->getoptions ("foo", "Foo=s");
19print ((defined $opt_foo) ? "" : "not ", "ok 2\n");
20print (($opt_foo == 1) ? "" : "not ", "ok 3\n");
21print ((defined $opt_Foo) ? "" : "not ", "ok 4\n");
22print (($opt_Foo eq "-baR") ? "" : "not ", "ok 5\n");
23print ((@ARGV == 1) ? "" : "not ", "ok 6\n");
24print (($ARGV[0] eq "bar") ? "" : "not ", "ok 7\n");
25print (!(defined $opt_baR) ? "" : "not ", "ok 8\n");
26print (!(defined $opt_bar) ? "" : "not ", "ok 9\n");