Add Perl::Critic for Perl Best Practices compliance

This commit is contained in:
Eric Miller
2008-07-09 03:07:32 +00:00
parent f436c9f69c
commit 086fea0349
2 changed files with 303 additions and 0 deletions

13
t/00_local_perlcritic.t Normal file
View 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();