updated readme
[catagits/CatalystX-Declare.git] / xt / kwalitee.t
1 #!/usr/bin/env perl
2 use strict;
3 use warnings;
4
5 use Test::More;
6
7 eval { 
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
19 plan skip_all => 'Test::Kwalitee not installed; skipping' if $@;