I hope this is the correct place for this question! I'm trying to use Test::Kwalitee with the following test script:
-- test script start -- use strict; use warnings; use Test::More; eval { require Test::Kwalitee; Test::Kwalitee->import(); }; plan( skip_all => 'Test::Kwalitee not installed; skipping' ) if $@; -- test script end -- However, it seems to die unexpectedly with the following output: -- output start - 1..13 ok 1 - extractable ok 2 - has_readme ok 3 - has_manifest ok 4 - has_meta_yml ok 5 - has_buildtool ok 6 - has_changelog ok 7 - no_symlinks ok 8 - has_tests ok 9 - proper_libs ok 10 - no_pod_errors # Looks like you planned 13 tests but only ran 10. # Looks like your test died just after 10. -- output end -- Any idea what this might be about? Cheers Nathan