aboutsummaryrefslogtreecommitdiffstats
path: root/t/00distribution.t
blob: d49e472ef0d2fb069eae678dcf2127df6db6b047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl
# $Id: 00distribution.t 1179 2006-08-05 08:30:57Z 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/ ];
    }
}