From: Vincent Pit Date: Mon, 20 Aug 2012 08:21:06 +0000 (+0200) Subject: Make the kwalitee test unlink its byproducts X-Git-Tag: v0.930.1~7 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FTask-Devel-Cover-Recommended.git;a=commitdiff_plain;h=c8c63ca82acfd846da26784c952c9db37b22d574 Make the kwalitee test unlink its byproducts --- diff --git a/t/99-kwalitee.t b/t/99-kwalitee.t index 4a66457..ea20ee1 100644 --- a/t/99-kwalitee.t +++ b/t/99-kwalitee.t @@ -5,6 +5,10 @@ use warnings; use Test::More; +sub VPIT::Guard::DESTROY { unlink for glob 'Debian_CPANTS.txt*' } + +my $guard = bless { }, 'VPIT::Guard'; + eval { require Parse::RecDescent; 'Parse::RecDescent'->VERSION('1.967006') } or plan skip_all => 'Parse::RecDescent version 1.967006 or greater required';