diff options
Diffstat (limited to 't')
-rwxr-xr-x | t/00distribution.t | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/t/00distribution.t b/t/00distribution.t new file mode 100755 index 0000000..8a4b2c4 --- /dev/null +++ b/t/00distribution.t @@ -0,0 +1,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/ ]; + } +} |