Skip Menu |

This queue is for tickets about the Devel-CoverX-Covered CPAN distribution.

Report information
The Basics
Id: 99426
Status: resolved
Priority: 0/
Queue: Devel-CoverX-Covered

People
Owner: Nobody in particular
Requestors: ovid [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: No longer works with new Devel::Cover
In the collect_runs() method, you attempt to find the run database file with this: my $run_db_file = "$run_db_dir/cover.13"; #Eeh, refactor -e $run_db_file or warn("No run db ($run_db_file)\n"), next; That comment is very appropriate :) With version 1.16 of Devel::Cover, that file is "$run_db_dir/cover.14". By manually hacking Devel::CoverX::Covered::Db to change that version from 13 to 14, the code appears to run just fine and I've gotten some results (I can't say how well it works, but it handles my particular case). Best, Ovid
On Sat Oct 11 05:30:45 2014, OVID wrote: Show quoted text
> That comment is very appropriate :) With version 1.16 of Devel::Cover, > that file is "$run_db_dir/cover.14". By manually hacking
Yeah, that number is not exposed by Devel::Cover (actually it might be nowadays, I haven't looked). I fixed this the other day, so a fix should be on CPAN now.