File: distribution.t

package info (click to toggle)
libpdf-fdf-simple-perl 0.21-3.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 1,012 kB
  • sloc: perl: 15,109; makefile: 7
file content (12 lines) | stat: -r--r--r-- 309 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#! /usr/bin/perl

use strict;
use Test::More;

if ($ENV{DO_DIST_CHECK}) {
  eval "use Test::Distribution";
  plan skip_all => "Test::Distribution required for checking distribution" if $@;
  import Test::Distribution;
} else {
  plan skip_all => 'Test::Distribution skipped unless env $DO_DIST_CHECK set.';
}