Add Perl::Critic for Perl Best Practices compliance
This commit is contained in:
13
t/00_local_perlcritic.t
Normal file
13
t/00_local_perlcritic.t
Normal file
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/perl
|
||||
# 00_local_perlcritic.t - Test file for PBP compliance for SNMP::Info
|
||||
# $Id$
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use Test::More;
|
||||
|
||||
eval "use Test::Perl::Critic (-profile => 't/perlcritic.rc')";
|
||||
plan skip_all => "Test::Perl::Critic required for testing PBP compliance" if $@;
|
||||
|
||||
Test::Perl::Critic::all_critic_ok();
|
||||
|
||||
Reference in New Issue
Block a user