Skip to content
Snippets Groups Projects
Commit d31da1a2 authored by Guillaume ROUSSE's avatar Guillaume ROUSSE
Browse files

initial import

parent 6c015494
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/perl
use strict;
use warnings;
use Test::More;
use UNIVERSAL::require;
use English qw(-no_match_vars);
plan(skip_all => 'Author test, set $ENV{TEST_AUTHOR} to a true value to run')
if !$ENV{TEST_AUTHOR};
plan(skip_all => 'Test::Perl::Critic required')
unless Test::Perl::Critic->require();
my $config = File::Spec->catfile('t', 'perlcriticrc');
Test::Perl::Critic->import(-profile => $config);
all_critic_ok();
exclude =
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment