diff options
-rw-r--r-- | MANIFEST | 1 | ||||
-rw-r--r-- | t/03kwality.t | 9 |
2 files changed, 10 insertions, 0 deletions
@@ -102,6 +102,7 @@ rurpmi skip.list t/01compile.t t/02create_pkgs.t +t/03kwality.t t/cfg.t t/data/media.cfg t/data/reconfig.urpmi diff --git a/t/03kwality.t b/t/03kwality.t new file mode 100644 index 00000000..a45a1636 --- /dev/null +++ b/t/03kwality.t @@ -0,0 +1,9 @@ +#!/usr/bin/perl +use Test::More; + +plan skip_all => "These tests are for authors only!" unless $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING}; + +eval { require Test::Kwalitee; Test::Kwalitee->import() }; + +plan( skip_all => 'Test::Kwalitee not installed; skipping' ) if $@; + |