summaryrefslogtreecommitdiff
path: root/t/author-critic.t
diff options
context:
space:
mode:
Diffstat (limited to 't/author-critic.t')
-rw-r--r--t/author-critic.t20
1 files changed, 20 insertions, 0 deletions
diff --git a/t/author-critic.t b/t/author-critic.t
new file mode 100644
index 0000000..af7f7ea
--- /dev/null
+++ b/t/author-critic.t
@@ -0,0 +1,20 @@
+#!perl
+
+BEGIN {
+ unless ($ENV{AUTHOR_TESTING}) {
+ require Test::More;
+ Test::More::plan(skip_all => 'these tests are for testing by the author');
+ }
+}
+
+
+use strict;
+use warnings;
+
+use Test::More;
+use English qw(-no_match_vars);
+
+eval "use Test::Perl::Critic";
+plan skip_all => 'Test::Perl::Critic required to criticise code' if $@;
+Test::Perl::Critic->import( -profile => "perlcritic.rc" ) if -e "perlcritic.rc";
+all_critic_ok();