aboutsummaryrefslogtreecommitdiffstats
path: root/t/00distribution.t
blob: 3286c0e34522f4a852567bc39e641e7f7a302f53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl
# $Id: 00distribution.t 1723 2006-10-17 13:53:27Z warly $

use Test::More;

BEGIN {
    eval {
        require Test::Distribution;
    };
    if($@) {
        plan skip_all => 'Test::Distribution not installed';
    } else {
        import Test::Distribution only => [ qw/use pod description/ ];
    }
}