Skip Menu |

This queue is for tickets about the DBIx-MyServer CPAN distribution.

Report information
The Basics
Id: 27847
Status: resolved
Priority: 0/
Queue: DBIx-MyServer

People
Owner: Nobody in particular
Requestors: darnold [...] presicient.com
Cc:
AdminCc:

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



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)
Thank you for you bug report. The Makefile has been adjusted.