Subject: | gd.t should fail when GD in not installed |
Template::GD requires GD 1.14 in Makefile.PL.
gd.t has legacy test skip:
eval "use GD;";
if ( $@ || $GD::VERSION < 1.20 ) {
skip_all('GD module(s) not installed');
}
proposed patch:
ok (!$@ and $GD::VERSION >= 1.20,"GD loaded");
This change also may be made in other tests.
Change Makefile.PL to require GD 1.20
-------
Alexandr Ciornii, http://chorny.net