File: 98_pod_syntax.t

package info (click to toggle)
libtext-greeking-perl 0.14-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 104 kB
  • ctags: 10
  • sloc: perl: 137; makefile: 4
file content (23 lines) | stat: -rw-r--r-- 535 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!perl

# Test all distribution POD are formatted correctly

use strict;
use warnings;
use Test::More;

my $MODULE = 'Test::Pod 1.00';

# Don't run tests for installs
unless ($ENV{AUTOMATED_TESTING} or $ENV{RELEASE_TESTING}) {
    plan(skip_all => "Author tests not required for installation");
}

# Load the testing module
eval "use $MODULE";
if ($@) {
    $ENV{RELEASE_TESTING}
      ? die("Failed to load required release-testing module $MODULE")
      : plan(skip_all => "$MODULE not available for testing");
}
all_pod_files_ok();