b0e7df0b1a7a92a269992ea3c79a05ab3891e34d
[p5sagit/Class-Accessor-Grouped.git] / t / manifest.t
1 use strict;
2 use warnings;
3
4 BEGIN {
5   use lib 't/lib';
6   use Test::More;
7
8   plan skip_all => 'set TEST_AUTHOR to enable this test' unless $ENV{TEST_AUTHOR};
9
10   eval 'use Test::CheckManifest 0.09';
11   if($@) {
12     plan skip_all => 'Test::CheckManifest 0.09 not installed';
13   };
14 };
15
16 ok_manifest({
17   exclude => ['/t/var', '/cover_db'],
18   filter  => [qr/\.(svn|git)/, qr/cover/, qr/Build(.(PL|bat))?/, qr/_build/, qr/\.DS_Store/],
19   bool    => 'or'
20 });