]> git.vpit.fr Git - perl/modules/re-engine-Plugin.git/commitdiff
Get rid of t/99-kwalitee.t
authorVincent Pit <vince@profvince.com>
Tue, 6 Aug 2013 03:30:42 +0000 (00:30 -0300)
committerVincent Pit <vince@profvince.com>
Tue, 6 Aug 2013 03:30:42 +0000 (00:30 -0300)
New versions started to throw warnings if specific environment variables
are not set. This may be appropriate for dist manager users, but not really
for the rest of the world.

Since kwalitee metrics are either obvious or useless, there's no big loss
in removing this test anyway.

MANIFEST
t/90-author/kwalitee.t [deleted file]

index 33f17a253bdb04a5886f880539958f690b7ce18e..f7f8c0cf25235b46b512ba392e5f84a1f34a9d7f 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -38,7 +38,6 @@ t/50-num_buff/STORE.t
 t/60-taint/rx.t
 t/60-taint/util.t
 t/70-threads/threads.t
 t/60-taint/rx.t
 t/60-taint/util.t
 t/70-threads/threads.t
-t/90-author/kwalitee.t
 t/90-author/portability-files.t
 t/90-author/pod.t
 t/90-author/pod-coverage.t
 t/90-author/portability-files.t
 t/90-author/pod.t
 t/90-author/pod-coverage.t
diff --git a/t/90-author/kwalitee.t b/t/90-author/kwalitee.t
deleted file mode 100644 (file)
index 185d4ce..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#!perl
-
-use strict;
-use warnings;
-
-use Test::More;
-
-eval { require Test::Kwalitee; };
-plan(skip_all => 'Test::Kwalitee not installed') if $@;
-
-SKIP: {
- eval { Test::Kwalitee->import(); };
- if (my $err = $@) {
-  1 while chomp $err;
-  require Test::Builder;
-  my $Test = Test::Builder->new;
-  my $plan = $Test->has_plan;
-  $Test->skip_all($err) if not defined $plan or $plan eq 'no_plan';
-  skip $err => $plan - $Test->current_test;
- }
-}