The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#!/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 Readonly; # So we don't barf when we hit Readonly::XS below.
use lib 'inc';
use Perl::Critic::BuildUtilities qw< recommended_module_versions >;
#-----------------------------------------------------------------------------
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 :