]> git.vpit.fr Git - perl/modules/Sub-Op.git/commitdiff
Get rid of t/99-kwalitee.t
authorVincent Pit <vince@profvince.com>
Tue, 6 Aug 2013 03:09:32 +0000 (00:09 -0300)
committerVincent Pit <vince@profvince.com>
Tue, 6 Aug 2013 03:09:32 +0000 (00:09 -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/99-kwalitee.t [deleted file]

index 4e360b0bd2b8ea04bb01464b83a33d712d9261e3..1e09ba292808d589d61c129d1245849aa0a848b9 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -14,7 +14,6 @@ t/12-prototype.t
 t/91-pod.t
 t/92-pod-coverage.t
 t/95-portability-files.t
 t/91-pod.t
 t/92-pod-coverage.t
 t/95-portability-files.t
-t/99-kwalitee.t
 t/Sub-Op-LexicalSub/Makefile.PL
 t/Sub-Op-LexicalSub/LexicalSub.xs
 t/Sub-Op-LexicalSub/lib/Sub/Op/LexicalSub.pm
 t/Sub-Op-LexicalSub/Makefile.PL
 t/Sub-Op-LexicalSub/LexicalSub.xs
 t/Sub-Op-LexicalSub/lib/Sub/Op/LexicalSub.pm
diff --git a/t/99-kwalitee.t b/t/99-kwalitee.t
deleted file mode 100644 (file)
index 24d716b..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#!perl
-
-use strict;
-use warnings;
-
-use Test::More;
-
-eval "use Test::Kwalitee 1.01 ()";
-plan(skip_all => 'Test::Kwalitee 1.01 not installed') if $@;
-
-SKIP: {
- eval { Test::Kwalitee->import(tests => [ '-use_strict' ]); };
- 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;
- }
-}