Index: /trunk/Nebulous-Server/Changes
===================================================================
--- /trunk/Nebulous-Server/Changes	(revision 5667)
+++ /trunk/Nebulous-Server/Changes	(revision 5668)
@@ -2,4 +2,5 @@
 
 0.02
+    - add t/00_distribution.t
     - rename test files
     - [nebclient] VERSION to '0.0.2'
Index: /trunk/Nebulous-Server/MANIFEST
===================================================================
--- /trunk/Nebulous-Server/MANIFEST	(revision 5667)
+++ /trunk/Nebulous-Server/MANIFEST	(revision 5668)
@@ -66,4 +66,5 @@
 scripts/nebulous.cgi
 scripts/ptest.pl
+t/00_distribution.t 
 t/01_load.t
 t/02_server_setup.t
Index: /trunk/Nebulous-Server/t/00_distribution.t
===================================================================
--- /trunk/Nebulous-Server/t/00_distribution.t	(revision 5668)
+++ /trunk/Nebulous-Server/t/00_distribution.t	(revision 5668)
@@ -0,0 +1,25 @@
+#!/usr/bin/env perl
+
+# Copyright (C) 2005  Joshua Hoblitt
+#
+# $Id: 00_distribution.t,v 1.1 2005-12-03 02:59:49 jhoblitt Exp $
+
+use strict;
+use warnings FATAL => qw( all );
+
+use lib qw( ./lib ./t );
+
+use Test::More;
+
+# example taken from Test::Distribution Pod
+
+BEGIN {
+    eval {
+        require Test::Distribution;
+    };
+    if($@) {
+        plan skip_all => 'Test::Distribution not installed';
+    } else {
+        import Test::Distribution not => qw( podcover );
+    }
+}
Index: /trunk/Nebulous/Changes
===================================================================
--- /trunk/Nebulous/Changes	(revision 5667)
+++ /trunk/Nebulous/Changes	(revision 5668)
@@ -2,4 +2,5 @@
 
 0.02
+    - add t/00_distribution.t
     - rename test files
     - [nebclient] VERSION to '0.0.2'
Index: /trunk/Nebulous/MANIFEST
===================================================================
--- /trunk/Nebulous/MANIFEST	(revision 5667)
+++ /trunk/Nebulous/MANIFEST	(revision 5668)
@@ -66,4 +66,5 @@
 scripts/nebulous.cgi
 scripts/ptest.pl
+t/00_distribution.t 
 t/01_load.t
 t/02_server_setup.t
Index: /trunk/Nebulous/t/00_distribution.t
===================================================================
--- /trunk/Nebulous/t/00_distribution.t	(revision 5668)
+++ /trunk/Nebulous/t/00_distribution.t	(revision 5668)
@@ -0,0 +1,25 @@
+#!/usr/bin/env perl
+
+# Copyright (C) 2005  Joshua Hoblitt
+#
+# $Id: 00_distribution.t,v 1.1 2005-12-03 02:59:49 jhoblitt Exp $
+
+use strict;
+use warnings FATAL => qw( all );
+
+use lib qw( ./lib ./t );
+
+use Test::More;
+
+# example taken from Test::Distribution Pod
+
+BEGIN {
+    eval {
+        require Test::Distribution;
+    };
+    if($@) {
+        plan skip_all => 'Test::Distribution not installed';
+    } else {
+        import Test::Distribution not => qw( podcover );
+    }
+}
