summaryrefslogtreecommitdiff
path: root/t/98-pod-coverage.t
blob: cd1b6ef20ecbce7866a191f4499e2c4960e4996b (plain)
  1. #!/usr/bin/perl
  2. #
  3. # t/98-pod-coverage.t
  4. #
  5. # Checks POD coverage.
  6. #
  7. use strict;
  8. use warnings;
  9. use Test::More tests => 5;
  10. use Test::More;
  11. eval "use Test::Pod::Coverage";
  12. plan skip_all => "Test::Pod::Coverage required for testing POD coverage" if $@;
  13. pod_coverage_ok("LedgerSMB");
  14. pod_coverage_ok("LedgerSMB::Locale");
  15. pod_coverage_ok("LedgerSMB::Log");
  16. pod_coverage_ok("LedgerSMB::Menufile");
  17. pod_coverage_ok("LedgerSMB::Template::HTML");