CC: | philcrow2000 [...] yahoo.com |
Subject: | Caused crasg of Devel::Cover |
Due to a bug in Devel::Cover (https://github.com/pjcj/Devel--Cover/issues/275) the following line in Test::Files causes a crash if I try to determine the test coverage of a script using Test::Files:
if (index(ref $list, 'ARRAY') < 0) {
This can easily be avoided without waiting of a Devel::Cover bug fixing (which can take a lot of time due to high complexity of this module) if this line would be replaced with the following one:
if (ref($list) ne 'ARRAY') {
If you are straitened for time to provide this change, I would love to get a co-maintainer and to provide this change by my own.
Thanks and Regards,
Jurij