source: server/trunk/web/t/03podcoverage.t @ 158

Last change on this file since 158 was 1, checked in by nanardon, 14 years ago
  • init projects
File size: 346 bytes
Line 
1#!/usr/bin/env perl
2use strict;
3use warnings;
4use Test::More;
5
6plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
7
8eval "use Test::Pod::Coverage 1.04";
9plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@;
10
11eval "use Pod::Coverage 0.20";
12plan skip_all => 'Pod::Coverage 0.20 required' if $@;
13
14all_pod_coverage_ok();
Note: See TracBrowser for help on using the repository browser.