File: kwalitee.t

package info (click to toggle)
libspreadsheet-xlsx-perl 0.18-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 256 kB
  • sloc: perl: 1,088; makefile: 7
file content (11 lines) | stat: -rw-r--r-- 309 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
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'); };
plan( skip_all => "Test::Kwalitee not installed: $@; skipping") if $@;
 
kwalitee_ok();
done_testing;