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