http://qs321.pair.com?node_id=341452


in reply to Re: Re: Testaholics Anonymous (or how I learned to stop worrying and love Test::More)
in thread Testaholics Anonymous (or how I learned to stop worrying and love Test::More)

Ovid

I am actually running some of my tests through Devel::Cover right now, and and something just popped up.

What about on coverage for things like this:

return wantarray ? @results : \@results;
Devel::Cover reports that I have only tested the @results return value branch. Should I test the \@results branch too, or is this being too granular?

-stvn