The reports can be found on the server.
That last 5% is painful. I didn't resort to too many tricks. I'm using Devel::Cover 0.59 on my laptop and on the server, and a version of 5.8.4 and 5.8.6. Somethings would cover on one version and not another, like
$foo ||= getstuff() || otherget() || '';
my $class = ref $self || $self;
if you worry about not getting 100% coverage.my $class = eval 'ref $self || $self';
Re:eval is your friend.
fireartist on 2006-11-06T14:48:39
And then when he runs `perlcritic`, he'll get a failure...
Expression form of "eval" at line 7, column 15. See page 161 of PBP. (Severity: 5)
...the joys of hacking code to pass tests meant to improve our code
;) Re:eval is your friend.
Abigail on 2006-11-07T09:03:51
Reason #314 not to use perlcritic.Re:eval is your friend.
DAxelrod on 2006-11-06T20:55:04
Eeewww, please don't!:)
I'd much rather you optimize for readability than obsessive 100% coverage.