mirror of
https://github.com/duncs/clusterssh.git
synced 2025-04-25 02:42:25 +00:00
12 lines
381 B
Perl
12 lines
381 B
Perl
![]() |
use Test::More;
|
||
|
|
||
|
# This is the common idiom for author test modules like this, but see
|
||
|
# the full example in examples/checkmanifest.t and, more importantly,
|
||
|
# Adam Kennedy's article: http://use.perl.org/~Alias/journal/38822
|
||
|
eval 'use Test::DistManifest';
|
||
|
if ($@) {
|
||
|
plan skip_all => 'Test::DistManifest required to test MANIFEST';
|
||
|
}
|
||
|
|
||
|
manifest_ok( 'MANIFEST', 'MANIFEST.SKIP' );
|