Subject: | Undeclared dependency on DBI |
Makefile.PL has
PREREQ_PM => {}, # e.g., Module::Name => 1.1
But lib/DBIx/ActiveRecord.pm has
7:use DBI;
The fact that the README mentions the dependency on DBI does not count
because the file is not considered to be read by the toolchain, only by
humans.
This leads to many fails at cpantesters:
http://matrix.cpantesters.org/?dist=DBIx-ActiveRecord-0.03
By simply changing the line cited above from Makefile.PL to
PREREQ_PM => { DBI => 0 }, # e.g., Module::Name => 1.1
you will get many more PASS reports.
HTH&&Thanks,