File: pod.t

package info (click to toggle)
libhtml-tagset-perl 3.24-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 108 kB
  • sloc: perl: 189; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 243 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!perl

use strict;
use warnings;

use Test::More;

my $module = 'Test::Pod 1.14';

if ( eval "use $module; 1;" ) { ## no critic (ProhibitStringyEval)
    all_pod_files_ok();
}
else {
    plan skip_all => "$module required for testing POD";
}