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.