Checking in changes prior to tagging of version 0.05. Changelog diff is:
[gitmo/MooseX-StrictConstructor.git] / t / perlcritic.t
CommitLineData
32726d88 1use strict;
2use warnings;
3
4use Test::More;
5
6
7plan skip_all => 'This test is only run for the module author'
8 unless -d '.svn' || $ENV{IS_MAINTAINER};
9
10eval 'use Test::Perl::Critic ( -severity => 4 )';
11plan skip_all => 'Test::Perl::Critic required for testing POD' if $@;
12
13all_critic_ok();