aboutsummaryrefslogtreecommitdiffstats
path: root/t/kwalitee.t
blob: 7172422d876efc866f3c6f747995869bb9b004ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!perl

use 5.006;
use strict;
use warnings FATAL => 'all';
use Test::More;

BEGIN {
    plan( skip_all => 'these tests are for release candidate testing' )
        unless $ENV{RELEASE_TESTING};
}

eval {
         require Test::Kwalitee;
         Test::Kwalitee->import('kwalitee_ok');
         kwalitee_ok();
         done_testing();
     };

plan( skip_all => 'Test::Kwalitee not installed; skipping' ) if $@;