X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fmanifest.t;h=b0e7df0b1a7a92a269992ea3c79a05ab3891e34d;hb=ba8c183b7c3d71a5b8fcd936916e80a7b87f7961;hp=31df639a63953efd920c0d12a312b9375b4d84c6;hpb=a0bce8bc651fb03109319e4d216c62d34909f96a;p=p5sagit%2FClass-Accessor-Grouped.git diff --git a/t/manifest.t b/t/manifest.t index 31df639..b0e7df0 100644 --- a/t/manifest.t +++ b/t/manifest.t @@ -1,22 +1,20 @@ -#!perl -wT -# $Id$ use strict; use warnings; BEGIN { - use lib 't/lib'; - use Test::More; + use lib 't/lib'; + use Test::More; - plan skip_all => 'set TEST_AUTHOR to enable this test' unless $ENV{TEST_AUTHOR}; + plan skip_all => 'set TEST_AUTHOR to enable this test' unless $ENV{TEST_AUTHOR}; - eval 'use Test::CheckManifest 0.09'; - if($@) { - plan skip_all => 'Test::CheckManifest 0.09 not installed'; - }; + eval 'use Test::CheckManifest 0.09'; + if($@) { + plan skip_all => 'Test::CheckManifest 0.09 not installed'; + }; }; ok_manifest({ - exclude => ['/t/var', '/cover_db'], - filter => [qr/\.svn/, qr/cover/, qr/Build(.(PL|bat))?/, qr/_build/, qr/\.DS_Store/], - bool => 'or' + exclude => ['/t/var', '/cover_db'], + filter => [qr/\.(svn|git)/, qr/cover/, qr/Build(.(PL|bat))?/, qr/_build/, qr/\.DS_Store/], + bool => 'or' });