~ubuntu-branches/ubuntu/natty/libvideo-fourcc-info-perl/natty

« back to all changes in this revision

Viewing changes to t/01pod-coverage.t

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Yu
  • Date: 2009-05-13 08:50:41 UTC
  • Revision ID: james.westby@ubuntu.com-20090513085041-b6ryic5vgu25oge7
Tags: upstream-1.1.5
ImportĀ upstreamĀ versionĀ 1.1.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/perl -T
 
2
 
 
3
# t/01pod-coverage.t
 
4
#  Ensures all subroutines are documented with POD
 
5
#
 
6
# $Id: 01pod-coverage.t 6743 2009-04-29 13:42:50Z FREQUENCY@cpan.org $
 
7
#
 
8
# By Jonathan Yu <frequency@cpan.org>, 2009. All rights reversed.
 
9
#
 
10
# This package and its contents are released by the author into the
 
11
# Public Domain, to the full extent permissible by law. For additional
 
12
# information, please see the included `LICENSE' file.
 
13
 
 
14
use strict;
 
15
use warnings;
 
16
 
 
17
use Test::More;
 
18
 
 
19
unless ($ENV{TEST_AUTHOR}) {
 
20
  plan skip_all => 'Set TEST_AUTHOR to enable module author tests';
 
21
}
 
22
 
 
23
eval 'use Test::Pod::Coverage 1.04';
 
24
if ($@) {
 
25
  plan skip_all => 'Test::Pod::Coverage required to test POD Coverage';
 
26
}
 
27
 
 
28
all_pod_coverage_ok();