From 5ea24eff54557041f3406b894b4e4e35b1c52c02 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Wed, 6 May 2020 10:53:39 +0200 Subject: Add kwalitee test --- t/03kwality.t | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 t/03kwality.t (limited to 't') 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 $@; + -- cgit v1.2.1