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..d49e472
--- /dev/null
+++ b/t/00distribution.t
@@ -0,0 +1,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/ ];
+ }
+}