Blame t/kwalitee.t

Packit 6427f8
#!/usr/bin/perl -w
Packit 6427f8
use strict;
Packit 6427f8
Packit 6427f8
use Test::More;
Packit 6427f8
Packit 6427f8
if (not $ENV{RELEASE_TESTING}) {
Packit 6427f8
    plan( skip_all => 'Author test.  Set $ENV{RELEASE_TESTING} to true to run.');
Packit 6427f8
}
Packit 6427f8
Packit 6427f8
eval { require Test::Kwalitee; Test::Kwalitee->import() };
Packit 6427f8
plan( skip_all => 'Test::Kwalitee not installed; skipping' ) if $@;