File: pod.t

package info (click to toggle)
libgraphics-gnuplotif-perl 1.6-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 140 kB
  • ctags: 27
  • sloc: perl: 442; makefile: 9
file content (29 lines) | stat: -rw-r--r-- 846 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!perl -T
#===============================================================================
#
#         FILE:  pod.t
#
#  DESCRIPTION:  Testing POD
#
#        FILES:  ---
#         BUGS:  ---
#        NOTES:  ---
#       AUTHOR:  Dr.-Ing. Fritz Mehner (Mn), <mehner@fh-swf.de>
#      COMPANY:  Fachhochschule Südwestfalen, Iserlohn
#      VERSION:  1.0
#      CREATED:  06.06.2007 19:51:15 CEST
#     REVISION:  $Id: pod.t,v 1.2 2007/10/13 15:55:50 mehner Exp $
#===============================================================================

use strict;
use warnings;

use Test::More;
eval "use Test::Pod 1.0";
plan skip_all => "Test::Pod 1.0 required for testing POD" if $@;

my $login;
eval { $login = $ENV{USER} };
plan skip_all => "Only the author needs to check the POD documentation." if ($@ || $login ne "mehner" );

all_pod_files_ok();