File: 05_pod.t

package info (click to toggle)
libdatetime-format-rfc3339-perl 1.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 144 kB
  • sloc: perl: 508; makefile: 2
file content (17 lines) | stat: -rwxr-xr-x 328 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!perl

# Expected to be run from ../ (make test) or ../blib/ (make disttest)

use strict;
use warnings;

use Test::More;

BEGIN {
   # Ensure a recent version of Test::Pod
   my $min_tp = 1.22;
   eval( "use Test::Pod $min_tp; 1" )
      or plan skip_all => "Test::Pod $min_tp required for testing POD";
}

all_pod_files_ok();