Re: [ANNOUNCE] Devel::Cover 0.41

2004-04-29 Thread Tels
-BEGIN PGP SIGNED MESSAGE- Moin, On Thursday 29 April 2004 21:57, Paul Johnson wrote: > > Exactly! Especially the ability to look at > > > > http://pjcj.sytes.net/cpancover/Math-BigRat-0.12/lib-Math-BigRat-pm.htm > >l > > > > without having the "hassle" of downloading/installing Devel::Co

Re: [ANNOUNCE] Devel::Cover 0.41

2004-04-29 Thread Gabor Szabo
Where would we be without your work ? Out in the desert to fall prey to any bug ? At least we can run and get some cover. Thank you ! Gabor

Re: Test::More SKIP block

2004-04-29 Thread Michael G Schwern
On Thu, Apr 29, 2004 at 02:01:12PM +0200, H.Merijn Brand wrote: > Is it possible to have T::M skip the rest of the script from here on on a > certain condition? Its pretty trivial with Test::Builder. use Test::Builder; $TB = Test::Buider->new; sub skip_rest { my($why) = @_; my $nu

[ANNOUNCE] Devel::Cover 0.41

2004-04-29 Thread Paul Johnson
This is a pretty important release. It fixes a nasty bug in the last release and improves the coverage collection. To test it I have rerun cpancover. You can see the results at http://pjcj.sytes.net/cpancover/ If you have had problems recently I suggest upgrading. Changes since the last announ

Re: Devel::Cover - require 5.8?

2004-04-29 Thread Paul Johnson
On Fri, Apr 02, 2004 at 09:45:24PM -0500, Randy W. Sims wrote: > > Paul Johnson wrote: > >I am considering dropping support for Perl 5.6 in Devel::Cover. Whilst > >Devel::Cover basically works with Perl 5.6.1 and Perl 5.6.2, there are > >many parts which are difficult or impossible to implement, l

Test::More SKIP block

2004-04-29 Thread H.Merijn Brand
Is it possible to have T::M skip the rest of the script from here on on a certain condition? --8<--- use Test::More tests => 765; # a lot ok (.); # many ok (), like (), and such SKIP: { $state or skip "What rest?", 0; # <-- I don't know $how_many : : : : } -->8--- or