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