Index: trunk/console/t/001_load.t
===================================================================
--- trunk/console/t/001_load.t	(revision 24600)
+++ 	(revision )
@@ -1,12 +1,0 @@
-# -*- perl -*-
-
-# t/001_load.t - check module loading and create testing directory
-
-use Test::More tests => 2;
-
-BEGIN { use_ok( 'console' ); }
-
-my $object = console->new ();
-isa_ok ($object, 'console');
-
-
Index: trunk/console/t/00_distribution.t
===================================================================
--- trunk/console/t/00_distribution.t	(revision 24616)
+++ trunk/console/t/00_distribution.t	(revision 24616)
@@ -0,0 +1,25 @@
+#!/usr/bin/env perl
+
+# Copyright (C) 2005  Joshua Hoblitt
+#
+# $Id: 00_distribution.t,v 1.2 2006-03-16 22:04:38 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/console/t/01_load.t
===================================================================
--- trunk/console/t/01_load.t	(revision 24616)
+++ trunk/console/t/01_load.t	(revision 24616)
@@ -0,0 +1,12 @@
+#!/usr/bin/perl
+
+# Copryight (C) 2009  Joshua Hoblitt
+
+use strict;
+use warnings FATAL => qw( all );
+
+use lib qw( ./t ./lib );
+
+use Test::More tests => 1;
+
+BEGIN { use_ok( 'Console' ); }
