#!perl
##############################################################################
# $Date: 2008-09-02 11:43:48 -0500 (Tue, 02 Sep 2008) $
# $Author: thaljef $
# $Revision: 2721 $
##############################################################################
use
5.006001;
use
strict;
use
warnings;
use
Test::More;
#-----------------------------------------------------------------------------
our
$VERSION
=
'1.093_01'
;
#-----------------------------------------------------------------------------
eval
'use Test::Pod 1.00'
;
## no critic
plan
skip_all
=>
'Test::Pod 1.00 required for testing POD'
if
$EVAL_ERROR
;
all_pod_files_ok( all_pod_files( starting_points_including_examples() ) );
# Local Variables:
# mode: cperl
# cperl-indent-level: 4
# fill-column: 78
# indent-tabs-mode: nil
# c-indentation-style: bsd
# End:
# ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :