Michael G. Schwern [Mon, 10 Dec 2001 02:47:40 +0000 (21:47 -0500)]
Message-ID: <
20011210074739.GH1770@blackrider>
p4raw-id: //depot/perl@13594
is( $@, '' );
is(scalar @t, 2);
- if( $t =~ /[nv]/i ) {
+
+ SKIP: {
+ skip "$t not expected to work for some reason", 2 if $t =~ /[nv]/i;
+
is($t[0], 12);
is($t[1], 34);
}
- else {
- pass() for 1..2;
- }
}
}