~ubuntu-branches/debian/sid/libpgobject-perl/sid

« back to all changes in this revision

Viewing changes to t/pod.t

  • Committer: Package Import Robot
  • Author(s): Robert James Clay
  • Date: 2014-04-14 12:56:51 UTC
  • Revision ID: package-import@ubuntu.com-20140414125651-8oislluh4ykxqevw
Tags: upstream-1.400.1
ImportĀ upstreamĀ versionĀ 1.400.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!perl -T
 
2
 
 
3
use strict;
 
4
use warnings;
 
5
use Test::More;
 
6
 
 
7
# Ensure a recent version of Test::Pod
 
8
my $min_tp = 1.22;
 
9
eval "use Test::Pod $min_tp";
 
10
plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;
 
11
 
 
12
all_pod_files_ok();