Re: Devel::Cover - what do the numbers mean ?

2003-10-04 Thread Gabor Szabo
On Sat, 4 Oct 2003, Paul Johnson wrote: > The colours are just eye candy, they map to the numbers. The idea being > that the red stuff is what you want to look at first. > > I suspect that you are right, and this is probably not documented > anywhere. Thanks for the answer ! Another question

Re: problem with a test exemple on the Phalanx web site

2003-10-04 Thread Andy Lester
At 1:01 PM -0400 10/4/03, Dominic Letarte wrote: on the page : http://qa.perl.org/phalanx/kwalitee.html ok( unlink $filename, "Remove $filename" ); should be written: ok( unlink( $filename), "Remove $filename" ); unless you want Perl to take "Remove $filename" as an arg for unlink and not for o

Re: Devel::Cover - what do the numbers mean ?

2003-10-04 Thread Paul Johnson
On Sat, Oct 04, 2003 at 11:25:27PM +0200, Gabor Szabo wrote: > On Sat, 4 Oct 2003 [EMAIL PROTECTED] wrote: > > > On Sat, Oct 04, 2003 at 11:00:33PM +0200, Gabor Szabo wrote: > > > But what are those numbers and colors in the columns ? > > > I could not find in the documentation. Please point me to

Re: Devel::Cover - what do the numbers mean ?

2003-10-04 Thread Gabor Szabo
On Sat, 4 Oct 2003 [EMAIL PROTECTED] wrote: > On Sat, Oct 04, 2003 at 11:00:33PM +0200, Gabor Szabo wrote: > > But what are those numbers and colors in the columns ? > > I could not find in the documentation. Please point me to the > > description if it is available somewhere. > > Percentage of th

Re: Devel::Cover - what do the numbers mean ?

2003-10-04 Thread schwern
On Sat, Oct 04, 2003 at 11:00:33PM +0200, Gabor Szabo wrote: > But what are those numbers and colors in the columns ? > I could not find in the documentation. Please point me to the > description if it is available somewhere. Percentage of the code covered, I think.

Re: Devel::Cover can't find loaded modules

2003-10-04 Thread schwern
On Sat, Oct 04, 2003 at 09:38:11PM +0200, Paul Johnson wrote: > Who are these people who change directories and don't put things back > as they found them? ;-) File::chdir

Devel::Cover - what do the numbers mean ?

2003-10-04 Thread Gabor Szabo
I have just used Devel::Cover successfully for the first time. I even got the HTML pages. Great! But what are those numbers and colors in the columns ? I could not find in the documentation. Please point me to the description if it is available somewhere. thanks Gabor

Re: Devel::Cover can't find loaded modules

2003-10-04 Thread Paul Johnson
On Sat, Oct 04, 2003 at 07:23:09AM +1000, Andrew Savige wrote: > Ovid wrote: > > I was running some test code with Devel::Cover and I've had no problem using > > it or generating pretty reports that make coworkers "ooh" and "ahh". > > Unfortunately, I started running my test suite on a different s

Re: Devel::Cover can't find loaded modules

2003-10-04 Thread Paul Johnson
On Fri, Oct 03, 2003 at 10:44:24AM -0700, Ovid wrote: > Hi all, > > I was running some test code with Devel::Cover and I've had no problem > using it or generating pretty reports that make coworkers "ooh" and > "ahh". Unfortunately, I started running my test suite on a different > set of tests a

problem with a test exemple on the Phalanx web site

2003-10-04 Thread Dominic Letarte
on the page : http://qa.perl.org/phalanx/kwalitee.html ok( unlink $filename, "Remove $filename" ); should be written: ok( unlink( $filename), "Remove $filename" ); unless you want Perl to take "Remove $filename" as an arg for unlink and not for ok. Dominic