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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
#!perl
use strict;
use warnings;
use Perl::Critic::TestUtils qw(pcritique_with_violations);
use Readonly;
use Test::More;
Readonly::Scalar my $NUMBER_OF_TESTS => 7;
plan( tests => $NUMBER_OF_TESTS );
our $VERSION = '1.138';
Perl::Critic::TestUtils::assert_version( $VERSION );
Perl::Critic::TestUtils::block_perlcriticrc();
sub has_policy {
return eval {
require Perl::Critic::Policy::CodeLayout::ProhibitHashBarewords;
1;
};
}
my $policy = 'CodeLayout::ProhibitHashBarewords';
my $code;
#-----------------------------------------------------------------------------
SKIP: {
has_policy()
or skip 'You need CodeLayout::ProhibitHashBarewords policy for this test',
$NUMBER_OF_TESTS;
$code = <<'END_PERL';
my %hash = (
foo => 1,
bar => 2,
baz => 3,
quux => 4,
);
END_PERL
my @violations_re = (
qr{^ \s* foo \s =>}xms,
qr{^ \s* bar \s =>}xms,
qr{^ \s* baz \s =>}xms,
qr{^ \s* quux \s =>}xms,
);
my @violations;
my $rc = eval { @violations = pcritique_with_violations( $policy, \$code ); 2112; };
is( $rc, 2112, 'Eval ran OK' );
is( scalar @violations, 4, 'Found 4 violations' );
is( scalar @violations, @violations_re, 'Violations and regexes match' );
foreach my $violation (@violations) {
my $violation_re = shift @violations_re;
like( $violation->source, $violation_re, 'Correct line for violation' );
}
} # end skip
# 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 :
|