Skip Menu |

This queue is for tickets about the CatalystX-ListFramework CPAN distribution.

Report information
The Basics
Id: 42299
Status: open
Priority: 0/
Queue: CatalystX-ListFramework

People
Owner: Nobody in particular
Requestors: RADEK [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 0.5
Fixed in: (no value)



Subject: Catalyst::Plugin::HTML::Widget dependency missing
Tests use the Catalyst::Plugin::HTML::Widget module, but it's not listed as a dependency in Makefile.PL, therefore tests fail the hard way if it's not present.
The Catalyst::Plugin::StackTrace dependency is missing as well; attaching a trivial Makefile.PL patch. Also, I suggest switching from DBD::SQLite2 to DBD::SQLite; the latter one is newer, more widely used and has smaller percentage of test failures (which makes it more likely to be already installed).
--- /home/users/radek/rpm/new/CatalystX-ListFramework-0.5/Makefile.PL~ 2008-02-14 03:05:10.000000000 +0100 +++ /home/users/radek/rpm/new/CatalystX-ListFramework-0.5/Makefile.PL 2009-01-11 13:25:19.150772094 +0100 @@ -11,4 +11,7 @@ build_requires 'Catalyst::View::JSON'; build_requires 'ok'; +test_requires 'Catalyst::Plugin::HTML::Widget'; +test_requires 'Catalyst::Plugin::StackTrace'; + WriteAll();