move author tests to xt and remove environment conditional
[p5sagit/Class-Accessor-Grouped.git] / t / manifest.t
diff --git a/t/manifest.t b/t/manifest.t
deleted file mode 100644 (file)
index b0e7df0..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-use strict;
-use warnings;
-
-BEGIN {
-  use lib 't/lib';
-  use Test::More;
-
-  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';
-  };
-};
-
-ok_manifest({
-  exclude => ['/t/var', '/cover_db'],
-  filter  => [qr/\.(svn|git)/, qr/cover/, qr/Build(.(PL|bat))?/, qr/_build/, qr/\.DS_Store/],
-  bool    => 'or'
-});