File: manifest.t

package info (click to toggle)
libpdf-table-perl 1%3A1.002-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 448 kB
  • sloc: perl: 3,006; makefile: 11
file content (21 lines) | stat: -rw-r--r-- 391 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!perl -T
use 5.010;
use strict;
use warnings FATAL => 'all';
use Test::More;

my $min_tcm = 0.9;
# Windows: SET AUTHOR_TESTING=1

BEGIN {
  unless ($ENV{'AUTHOR_TESTING'}) {
    print qq{1..0 # SKIP Test::CheckManifest, for testing by the author\n};
    exit
  }
}

eval "use Test::CheckManifest $min_tcm";
plan skip_all => "Test::CheckManifest $min_tcm required" if $@;
ok_manifest();

1;