aboutsummaryrefslogtreecommitdiffstats
path: root/t/00distribution.t
blob: 8a4b2c40cc6e3b2d028e01666fa84bbf782740b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl
# $Id$

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/ ];
    }
}