source: trunk/essentials/dev-lang/perl/lib/Switch/t/nested.t@ 3184

Last change on this file since 3184 was 3181, checked in by bird, 19 years ago

perl 5.8.8

File size: 491 bytes
Line 
1BEGIN {
2 if ($ENV{PERL_CORE}) {
3 chdir('t') if -d 't';
4 @INC = qw(../lib);
5 }
6}
7
8use Switch;
9
10print "1..4\n";
11
12my $count = 1;
13for my $count (1..3, 'four')
14{
15 switch ([$count])
16 {
17
18=pod
19
20=head1 Test
21
22We also test if Switch is POD-friendly here
23
24=cut
25
26 case qr/\d/ {
27 switch ($count) {
28 case 1 { print "ok 1\n" }
29 case [2,3] { print "ok $count\n" }
30 }
31 }
32 case 'four' { print "ok 4\n" }
33 }
34}
35
36__END__
37
38=head1 Another test
39
40Still friendly???
41
42=cut
Note: See TracBrowser for help on using the repository browser.