Update IPC::Cmd to 0.42
[p5sagit/p5-mst-13.2.git] / lib / Switch / t / nested.t
index 032d3a6..e7e520a 100755 (executable)
@@ -1,3 +1,10 @@
+BEGIN {
+    if ($ENV{PERL_CORE}) {
+        chdir('t') if -d 't';
+        @INC = qw(../lib);
+    }
+}
+
 use Switch;
 
 print "1..4\n";
@@ -7,6 +14,15 @@ for my $count (1..3, 'four')
 {
        switch ([$count])
        {
+
+=pod
+
+=head1 Test
+
+We also test if Switch is POD-friendly here
+
+=cut
+
                case qr/\d/ {
                                switch ($count) {
                                        case 1     { print "ok 1\n" }
@@ -16,3 +32,11 @@ for my $count (1..3, 'four')
                case 'four' { print "ok 4\n" }
        }
 }
+
+__END__
+
+=head1 Another test
+
+Still friendly???
+
+=cut