Index: trunk/Nebulous/t/Test/Nebulous.pm
===================================================================
--- trunk/Nebulous/t/Test/Nebulous.pm	(revision 13251)
+++ trunk/Nebulous/t/Test/Nebulous.pm	(revision 16281)
@@ -1,9 +1,13 @@
 # Copyright (C) 2004  Joshua Hoblitt
 #
-# $Id: Nebulous.pm,v 1.15 2007-05-04 23:36:46 jhoblitt Exp $
+# $Id: Nebulous.pm,v 1.16 2008-02-02 01:51:29 jhoblitt Exp $
 
 package Test::Nebulous;
 
 use strict;
+
+our $VERSION = '0.01';
+
+use base qw( Exporter );
 
 use DBI;
@@ -12,9 +16,11 @@
 use Nebulous::Server::SQL;
 
-my $dsn     = "DBI:mysql:database=test:host=localhost";
-my $user    = "test";
-my $passwd  = "";
+our @EXPORT = qw( $NEB_DB $NEB_USER $NEB_PASS );
 
-my $dbh = DBI->connect( $dsn, $user, $passwd );
+our $NEB_DB   = "DBI:mysql:database=nebulous:host=localhost";
+our $NEB_USER = "nebulous";
+our $NEB_PASS = '@neb@';
+
+my $dbh = DBI->connect( $NEB_DB, $NEB_USER, $NEB_PASS );
 my $sql = Nebulous::Server::SQL->new;
 
