Index: trunk/console/MANIFEST
===================================================================
--- trunk/console/MANIFEST	(revision 24615)
+++ trunk/console/MANIFEST	(revision 24616)
@@ -10,3 +10,4 @@
 scripts/console-config
 scripts/console-ipp-defaults
-t/001_load.t
+t/00_distribution.t
+t/01_load.t
Index: trunk/console/lib/Console.pm
===================================================================
--- trunk/console/lib/Console.pm	(revision 24615)
+++ trunk/console/lib/Console.pm	(revision 24616)
@@ -1,2 +1,4 @@
+# Copyright (C) 2009  Joshua Hoblitt
+
 package Console;
 
@@ -87,2 +89,57 @@
 
 1;
+
+__END__
+
+=pod
+
+=head1 NAME
+
+Console - rcfile management for the 'console' util
+
+=head1 SYNOPSIS
+
+    use Console;
+
+    my $rcfile = Console::find_rcfile;
+    my $c = Console::read_rcfile($rcfile);
+    Console::add_host(config => $c, console => $con, hostname => $h);
+    Console::delete_host(config => $c, hostname => $h);
+
+=head1 DESCRIPTION
+
+=head1 CREDITS
+
+Just me, myself, and I.
+
+=head1 SUPPORT
+
+Please contact the author directly via e-mail.
+
+=head1 AUTHOR
+
+Joshua Hoblitt <jhoblitt@cpan.org>
+
+=head1 COPYRIGHT
+
+Copyright (C) 2009  Joshua Hoblitt.  All rights reserved.
+
+This program is free software; you can redistribute it and/or modify it under
+the terms of the GNU General Public License as published by the Free Software
+Foundation; either version 2 of the License, or (at your option) any later
+version.
+
+This program is distributed in the hope that it will be useful, but WITHOUT ANY
+WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License along with
+this program; if not, write to the Free Software Foundation, Inc., 59 Temple
+Place - Suite 330, Boston, MA  02111-1307, USA.
+
+The full text of the license can be found in the LICENSE file included with
+this module, or in the L<perlgpl> Pod as supplied with Perl 5.8.1 and later.
+
+=head1 SEE ALSO
+
+L<Config::YAML>
Index: trunk/console/t/001_load.t
===================================================================
--- trunk/console/t/001_load.t	(revision 24615)
+++ 	(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' ); }
