make kwalitee an author test
[gitmo/MooseX-Types-Path-Class.git] / t / kwalitee.t
1
2 use warnings FATAL => 'all';
3 use strict;
4 use Test::More;
5 if ( not $ENV{TEST_AUTHOR} ) {
6     my $msg
7         = 'Author test.  Set $ENV{TEST_AUTHOR} to a true value to run.';
8     plan( skip_all => $msg );
9 }
10 eval { require Test::Kwalitee; Test::Kwalitee->import() };
11 plan( skip_all => 'Test::Kwalitee not installed; skipping' ) if $@;
12