File: zzz_50_pod.t

package info (click to toggle)
libregexp-common-perl 2011121001-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 860 kB
  • sloc: perl: 10,291; makefile: 2
file content (16 lines) | stat: -rwxr-xr-x 251 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl

use strict;

eval "use Test::More; 1" or do {
    print "1..0 # SKIP Test::More required\n";
    exit;
};

eval "use Test::Pod 1.00; 1" or
      plan (skip_all => "Test::Pod required for testing POD");

all_pod_files_ok ();


__END__