~ubuntu-branches/ubuntu/trusty/libtest-roo-perl/trusty-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): gregor herrmann
  • Date: 2014-01-14 19:25:11 UTC
  • Revision ID: package-import@ubuntu.com-20140114192511-9ycl4dc1zgamfnek
Tags: upstream-1.002
ImportĀ upstreamĀ versionĀ 1.002

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!perl
 
2
 
 
3
use Test::More;
 
4
 
 
5
eval "use Test::Pod::Coverage 1.08";
 
6
plan skip_all => "Test::Pod::Coverage 1.08 required for testing POD coverage"
 
7
  if $@;
 
8
 
 
9
eval "use Pod::Coverage::TrustPod";
 
10
plan skip_all => "Pod::Coverage::TrustPod required for testing POD coverage"
 
11
  if $@;
 
12
 
 
13
all_pod_coverage_ok({ coverage_class => 'Pod::Coverage::TrustPod' });