Reduce noise when running tests if Test::Kwalitee isn't installed.
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 04kwalitee.t
CommitLineData
6fd486dd 1use Test::More;
2
f1f25439 3eval { require Test::Kwalitee; die "Not maintainer" unless -f 'MANIFEST.SKIP' };
4if($@) {
2fc9342b 5 $@ =~ s/ \(\@INC contains.*//; # reduce the noise
f1f25439 6 plan( skip_all => $@ );
7}
8Test::Kwalitee->import();