1#!perl -w
2
3use strict;
4use Test::More;
5
6BEGIN {
7    eval {
8	require Test::Distribution;
9    };
10    if($@) {
11	plan skip_all => 'Test::Distribution not installed';
12    }
13    else {
14	import Test::Distribution;
15    }
16}
17