summaryrefslogtreecommitdiff
path: root/t/97-pod.t
blob: b194a441ba01d03c2fb5d7282e26ce224bfbf4c1 (plain)
  1. #!/usr/bin/perl
  2. #
  3. # t/97-pod.t
  4. #
  5. # Checks POD syntax.
  6. #
  7. use strict;
  8. use warnings;
  9. use Test::More;
  10. eval "use Test::Pod 1.00";
  11. plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
  12. all_pod_files_ok('LedgerSMB.pm', all_pod_files('LedgerSMB'));