#!/usr/bin/perl
##############################################################################
# $Date: 2009-06-25 18:47:12 -0400 (Thu, 25 Jun 2009) $
# $Author: clonezone $
# $Revision: 3360 $
##############################################################################
use
5.006001;
use
strict;
use
warnings;
use
Test::More;
#-----------------------------------------------------------------------------
our
$VERSION
=
'1.099_001'
;
#-----------------------------------------------------------------------------
# Certain developers change perl installations on occasion and don't always
# have all the optional modules installed. Make sure that they know that they
# don't. :]
my
%module_versions
= (
recommended_module_versions(),
'Test::Deep'
=> 0,
'Test::Memory::Cycle'
=> 0,
'Test::Pod'
=> 0,
'Test::Pod::Coverage'
=> 0,
'Test::Without::Module'
=> 0,
);
plan
tests
=>
scalar
keys
%module_versions
;
foreach
my
$module
(
sort
keys
%module_versions
) {
use_ok(
$module
,
$module_versions
{
$module
} );
}
# 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 :