On Tuesday 22 April 2008 10:43:32 [EMAIL PROTECTED] wrote: > Log: > Temporarily disabling tests in response to Mark Glines' report of test > failures in http://rt.perl.org/rt3/Ticket/Display.html?id=53126. > > Modified: trunk/t/steps/auto_crypto-03.t > =========================================================================== >=== --- trunk/t/steps/auto_crypto-03.t (original) > +++ trunk/t/steps/auto_crypto-03.t Tue Apr 22 10:43:30 2008 > @@ -4,7 +4,7 @@ > > use strict; > use warnings; > -use Test::More tests => 17; > +use Test::More qw(no_plan); # tests => 17;
Using 'skip_all' instead of 'no_plan' would mean you don't have to comment and then later uncomment the rest of the file. -- c