From: Vincent Pit Date: Tue, 6 Aug 2013 03:23:30 +0000 (-0300) Subject: Get rid of t/99-kwalitee.t X-Git-Tag: v0.53~6 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git;a=commitdiff_plain;h=356587fe6abf00d38a13737f5a74c8a70213d225;hp=057c4a6806e4d489d099d9244aaf4e71cf05493a Get rid of t/99-kwalitee.t 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. --- diff --git a/MANIFEST b/MANIFEST index 9887264..4d67bcf 100644 --- a/MANIFEST +++ b/MANIFEST @@ -43,7 +43,6 @@ t/91-pod.t t/92-pod-coverage.t t/93-pod-spelling.t t/95-portability-files.t -t/99-kwalitee.t t/lib/VPIT/TestHelpers.pm t/lib/Variable/Magic/TestDestroyRequired.pm t/lib/Variable/Magic/TestGlobalDestruction.pm diff --git a/t/99-kwalitee.t b/t/99-kwalitee.t deleted file mode 100644 index 337d917..0000000 --- a/t/99-kwalitee.t +++ /dev/null @@ -1,29 +0,0 @@ -#!perl - -use strict; -use warnings; - -use Test::More; - -use lib 't/lib'; -use VPIT::TestHelpers; - -my $guard = VPIT::TestHelpers::Guard->new( - sub { unlink for glob 'Debian_CPANTS.txt*' } -); - -load_or_skip_all('Parse::RecDescent', '1.967006'); -load_or_skip_all('Module::ExtractUse', '0.24' ); -load_or_skip_all('Test::Kwalitee', '1.01' ); - -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; - } -}