aboutsummaryrefslogtreecommitdiffstats
path: root/t/00distribution.t
diff options
context:
space:
mode:
Diffstat (limited to 't/00distribution.t')
-rwxr-xr-xt/00distribution.t15
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/ ];
+ }
+}