File: release-kwalitee.t

package info (click to toggle)
libtest-nobreakpoints-perl 0.17-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 188 kB
  • sloc: perl: 101; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 336 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

BEGIN {
    use Test::More;
    unless ($ENV{RELEASE_TESTING}) {
        plan skip_all => 'Release test. Set $ENV{RELEASE_TESTING} to a true value to run.';
    }
}

use strict;
use warnings;

eval "use Test::Kwalitee 'kwalitee_ok'";
plan skip_all => "Test::Kwalitee required for testing kwalitee" if $@;

kwalitee_ok();
done_testing;