blob: cd1b6ef20ecbce7866a191f4499e2c4960e4996b (
plain)
- #!/usr/bin/perl
- #
- # t/98-pod-coverage.t
- #
- # Checks POD coverage.
- #
- use strict;
- use warnings;
- use Test::More tests => 5;
- use Test::More;
- eval "use Test::Pod::Coverage";
- plan skip_all => "Test::Pod::Coverage required for testing POD coverage" if $@;
- pod_coverage_ok("LedgerSMB");
- pod_coverage_ok("LedgerSMB::Locale");
- pod_coverage_ok("LedgerSMB::Log");
- pod_coverage_ok("LedgerSMB::Menufile");
- pod_coverage_ok("LedgerSMB::Template::HTML");
|