Skip Menu |

This queue is for tickets about the HTML-Template-Convert-TT CPAN distribution.

Report information
The Basics
Id: 45657
Status: new
Priority: 0/
Queue: HTML-Template-Convert-TT

People
Owner: Nobody in particular
Requestors: frank.wiegand [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.0203
Fixed in: (no value)



Subject: wrong skip block
Hi, in t/testlib/_Auxiliary.pm you check if HTML::Template and Template are installed: eval { require HTML::Template; }; skip 'HTML::Template is not installed' if $@; eval { require Template; }; skip 'TemplateToolkit is not installed' if $@; But then you use (use runs at compile time!) these modules (again): use HTML::Template; use Template; This is unnecessary and leads to test errors like this: http://www.nntp.perl.org/group/perl.cpan.testers/2009/05/msg3800851.html Thanks, Frank