manifest fixes
[catagits/CatalystX-Declare.git] / xt / kwalitee.t
CommitLineData
856ac9a7 1#!/usr/bin/env perl
2use strict;
3use warnings;
4
5use Test::More;
6
7eval {
8 # autogenerated files are excluded
9 # use strict is implied by Moose & Co.
10 require Test::Kwalitee; Test::Kwalitee->import(
11 tests => [qw(
12 -use_strict
13 -has_manifest
14 -has_test_pod_coverage
15 )],
16 );
17};
18
19plan skip_all => 'Test::Kwalitee not installed; skipping' if $@;