initial git checkin
[gitmo/MooseX-FollowPBP.git] / t / kwalitee.t
1 use strict;
2 use warnings;
3
4 use Test::More;
5
6
7 plan skip_all => 'This test is only run for the module author'
8     unless -d '.svn' || $ENV{IS_MAINTAINER};
9
10 eval { require Test::Kwalitee; Test::Kwalitee->import() };
11 plan skip_all => "Test::Kwalitee needed for testing kwalitee"
12     if $@;