Integrate with Sarathy.
[p5sagit/p5-mst-13.2.git] / t / lib / gol-basic.t
CommitLineData
1a505819 1#!./perl -w
2
3BEGIN {
4 chdir 't' if -d 't';
5 unshift @INC, '../lib';
6}
7
8use Getopt::Long 2.17;
9
10print "1..9\n";
11
12@ARGV = qw(-Foo -baR --foo bar);
13Getopt::Long::Configure ("no_ignore_case");
14undef $opt_baR;
15undef $opt_bar;
16print "ok 1\n" if GetOptions ("foo", "Foo=s");
17print ((defined $opt_foo) ? "" : "not ", "ok 2\n");
18print (($opt_foo == 1) ? "" : "not ", "ok 3\n");
19print ((defined $opt_Foo) ? "" : "not ", "ok 4\n");
20print (($opt_Foo eq "-baR") ? "" : "not ", "ok 5\n");
21print ((@ARGV == 1) ? "" : "not ", "ok 6\n");
22print (($ARGV[0] eq "bar") ? "" : "not ", "ok 7\n");
23print (!(defined $opt_baR) ? "" : "not ", "ok 8\n");
24print (!(defined $opt_bar) ? "" : "not ", "ok 9\n");