Update to CGI 2.70, from Lincoln Stein.
[p5sagit/p5-mst-13.2.git] / t / lib / gol-compat.t
CommitLineData
1a505819 1#!./perl -w
2
1a505819 3require "newgetopt.pl";
4
5print "1..9\n";
6
7@ARGV = qw(-Foo -baR --foo bar);
8$newgetopt::ignorecase = 0;
9$newgetopt::ignorecase = 0;
10undef $opt_baR;
11undef $opt_bar;
12print "ok 1\n" if NGetOpt ("foo", "Foo=s");
13print ((defined $opt_foo) ? "" : "not ", "ok 2\n");
14print (($opt_foo == 1) ? "" : "not ", "ok 3\n");
15print ((defined $opt_Foo) ? "" : "not ", "ok 4\n");
16print (($opt_Foo eq "-baR") ? "" : "not ", "ok 5\n");
17print ((@ARGV == 1) ? "" : "not ", "ok 6\n");
18print (($ARGV[0] eq "bar") ? "" : "not ", "ok 7\n");
19print (!(defined $opt_baR) ? "" : "not ", "ok 8\n");
20print (!(defined $opt_bar) ? "" : "not ", "ok 9\n");