File: 98_pod.t

package info (click to toggle)
libtext-undiacritic-perl 0.07-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 148 kB
  • sloc: perl: 284; makefile: 2
file content (31 lines) | stat: -rw-r--r-- 602 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/perl

use strict;
use warnings;

use Test::More;
use English qw(-no_match_vars);

eval 'use Test::Pod 1.00';

if ( $EVAL_ERROR ) {
    plan skip_all => 'Test::Pod 1.00 required for testing POD';
}

# Try lib, bin, cgi-bin one level up if run from t/
# perl Build test or make test run from top-level dir.
my @dirs = ();       # empty is fine - default include lib/
if (-d '../t/') {    # we are inside t/
    @dirs = (
        '../lib',
        '../doc',
    );
}

my @files = all_pod_files(@dirs);

plan tests => scalar(@files);

foreach my $module (@files) {
    pod_file_ok( $module );
}