From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#!perl
##############################################################################
# $Date: 2009-03-01 17:40:39 -0600 (Sun, 01 Mar 2009) $
# $Author: clonezone $
# $Revision: 3205 $
##############################################################################
# Self-compliance tests
use strict;
use English qw( -no_match_vars );
use File::Spec qw();
use Perl::Critic::Utils qw{ :characters };
use Perl::Critic::TestUtils qw{ starting_points_including_examples };
# Note: "use PolicyFactory" *must* appear after "use TestUtils" for the
# -extra-test-policies option to work.
'-test' => 1,
'-extra-test-policies' => [ qw{ ErrorHandling::RequireUseOfExceptions } ],
);
#-----------------------------------------------------------------------------
our $VERSION = '1.097_002';
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Fall over if P::C::More isn't installed.
#-----------------------------------------------------------------------------
# Set up PPI caching for speed (used primarily during development)
if ( $ENV{PERL_CRITIC_CACHE} ) {
require PPI::Cache;
my $cache_path =
File::Spec->catdir(
File::Spec->tmpdir,
"test-perl-critic-cache-$ENV{USER}",
);
if ( ! -d $cache_path) {
mkdir $cache_path, oct 700;
}
PPI::Cache->import( path => $cache_path );
}
#-----------------------------------------------------------------------------
# Strict object testing -- prevent direct hash key access
foreach my $pkg ( $EMPTY, qw< ::Config ::Policy ::Violation> ) {
Devel::EnforceEncapsulation->apply_to('Perl::Critic'.$pkg);
}
#-----------------------------------------------------------------------------
# Run critic against all of our own files
my $rcfile = File::Spec->catfile( 'xt', 'author', '40_perlcriticrc-code' );
Test::Perl::Critic->import( -profile => $rcfile );
all_critic_ok( 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 :