From: Sven Dowideit <[email protected]>
---
t/01distributtion.t | 14 ++++++++++++++
1 file changed, 14 insertions(+)
create mode 100644 t/01distributtion.t
diff --git a/t/01distributtion.t b/t/01distributtion.t
new file mode 100644
index 0000000..a6963b8
--- /dev/null
+++ b/t/01distributtion.t
@@ -0,0 +1,14 @@
+use Test::More;
+
+BEGIN {
+ eval { require Test::Distribution; };
+ if ($@) {
+ plan skip_all => 'Test::Distribution not installed';
+ }
+ else {
+
+#TODO: work to fix these
+# import Test::Distribution only => [ qw/use description sig
versions use prereq pod podcoverage/ ];
+ }
+}
+
--
1.7.10.4