Files
snmp-info/xt/00_local_distribution.t
nick n fda13addf0 fix travis (#341)
add hook::lexwrap to testdeps (#341)
also use #!/usr/bin/env perl instead of #!/usr/bin/perl


can't see a related change to perl5.30 that could cause this however
2019-05-30 04:54:27 +02:00

15 lines
343 B
Perl

#!/usr/bin/env perl
# 00_local_distribution.t - Private test to check distribution
# $Id$
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/ ];