Subject: | Makefile.PL doesn't check for DBI or DBD::mysql |
Your Makefile.PL doesn't check for prerequisites
DBI and DBD::mysql, but they are required for
your tests. A simple change should suffice
PREREQ_PM => {'Digest::SHA1' => '2.11'},
to
PREREQ_PM => {
'Digest::SHA1' => '2.11',
'DBI' => '1.50', # or whatever version
'DBD::mysql' => '4.00', # or whatever version
},
(Alternatively, update t/DBIx-MyServer.t to skip
the test if either is not found)