Move author-only tests to xt directory

so they aren't run on installation by users
This commit is contained in:
Alexander Hartmaier
2016-04-27 17:49:26 +02:00
parent 7deea96bc3
commit f901ba5591
8 changed files with 5 additions and 0 deletions

12
xt/00_local_perlcritic.t Normal file
View File

@@ -0,0 +1,12 @@
#!/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 (-severity => 5)";
plan skip_all => "Test::Perl::Critic required for testing PBP compliance" if $@;
Test::Perl::Critic::all_critic_ok();