Switch to 2-space indent, minor formatting (no code) changes
[p5sagit/Class-Accessor-Grouped.git] / t / manifest.t
index 31df639..b0e7df0 100644 (file)
@@ -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'
 });