File: 00_local_distribution.t

package info (click to toggle)
libsnmp-info-perl 3.972002-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,300 kB
  • sloc: perl: 36,403; makefile: 2; sh: 1
file content (13 lines) | stat: -rw-r--r-- 336 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env perl
# 00_local_distribution.t - Private test to check distribution

use strict;
use warnings;
use Test::More;

eval { require Test::Distribution; };

plan skip_all => 'Optional Test::Distribution not installed' if ($@);

# Skip POD tests as we will test separately
import Test::Distribution not => [ qw/pod podcover/ ];