File: pod.t

package info (click to toggle)
liburi-find-perl 20100505-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 148 kB
  • ctags: 24
  • sloc: perl: 655; makefile: 38
file content (17 lines) | stat: -rw-r--r-- 372 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/perl
# vim: set ft=perl:
# Stolen from Andy Lester, from 
# <http://use.perl.org/~petdance/journal/12391>

use Test::More;
use File::Spec;
use strict;

eval "use Test::Pod 0.95";

if ($@) {
    plan skip_all => "Test::Pod v0.95 required for testing POD";
} else {
    plan tests => 1;
    Test::Pod::pod_file_ok(File::Spec->catfile(qw(blib script urifind)));
}