summaryrefslogtreecommitdiff
path: root/t/98-pod-coverage.t
blob: 02e3933503af34ea4d996850722816437f91fcee (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 => 6;
  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::Database");
  15. pod_coverage_ok("LedgerSMB::Locale");
  16. pod_coverage_ok("LedgerSMB::Log");
  17. pod_coverage_ok("LedgerSMB::Menufile");
  18. pod_coverage_ok("LedgerSMB::Template::HTML");