Skip Menu |

This queue is for tickets about the Log-Syslog-Abstract CPAN distribution.

Report information
The Basics
Id: 87093
Status: open
Priority: 0/
Queue: Log-Syslog-Abstract

People
Owner: dfs+pause [...] roaringpenguin.com
Requestors: ANDK [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Fails if Test::Kwalitee 1.09 is installed
As per subject. Unfortunately no fails yet arrived at cpantesters, so no link to a failing report, sorry. It would probably be a good idea to make kwalitee tests author tests, they make user installs fail unnecessarily. HTH && Regards,
Subject: Re: [rt.cpan.org #87093] Fails if Test::Kwalitee 1.09 is installed
Date: Tue, 13 Aug 2013 11:12:10 -0400
To: bug-Log-Syslog-Abstract [...] rt.cpan.org
From: "David F. Skoll" <dfs [...] roaringpenguin.com>
On Sat, 20 Jul 2013 06:12:28 -0400 "Andreas Koenig via RT" <bug-Log-Syslog-Abstract@rt.cpan.org> wrote: Show quoted text
> It would probably be a good idea to make kwalitee tests author tests, > they make user installs fail unnecessarily.
Thanks; I've applied this patch and it will be in the next release of Log::Syslog::Abstract: --- a/t/kwalitee.t +++ b/t/kwalitee.t @@ -1,5 +1,11 @@ #!/usr/bin/perl -w -use Test::More; +BEGIN { + use Test::More; + unless ($ENV{AUTHOR_TESTING}||$ENV{RELEASE_TESTING}) { + plan(skip_all => 'These tests are for author or release candidate testing'); + } +} + eval { require Test::Kwalitee; Test::Kwalitee->import() }; Regards, David.