Subject: | test failure |
looks quite good now, but t/38-packager.t still fails if MIME::Parser is not installed
the BEGIN block of t/38-packager.t should be changed as:
BEGIN {
eval { require MIME::Parser; };
- skip "MIME::Parser not installed", 5 if $@;
+ plan(skip_all => "MIME::Parser not installed") if $@;
}