~ubuntu-branches/ubuntu/saucy/libdatetimex-easy-perl/saucy

« back to all changes in this revision

Viewing changes to t/release/pod-coverage.t

  • Committer: Bazaar Package Importer
  • Author(s): gregor herrmann
  • Date: 2010-08-28 01:45:16 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100828014516-5j19aql8jw9y4567
Tags: 0.089-1
* New upstream release.
* Convert to source format 3.0 (quilt).
* Add /me to Uploaders.
* debian/copyright: update years of upstream copyright.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
use strict;
2
 
use warnings;
3
 
use Test::More;
4
 
 
5
 
# Ensure a recent version of Test::Pod::Coverage
6
 
my $min_tpc = 1.08;
7
 
eval "use Test::Pod::Coverage $min_tpc";
8
 
plan skip_all => "Test::Pod::Coverage $min_tpc required for testing POD coverage"
9
 
    if $@;
10
 
 
11
 
# Test::Pod::Coverage doesn't require a minimum Pod::Coverage version,
12
 
# but older versions don't recognize some common documentation styles
13
 
my $min_pc = 0.18;
14
 
eval "use Pod::Coverage $min_pc";
15
 
plan skip_all => "Pod::Coverage $min_pc required for testing POD coverage"
16
 
    if $@;
17
 
 
18
 
all_pod_coverage_ok();