Changeset 16354 for trunk/Nebulous/t/Test/Nebulous.pm
- Timestamp:
- Feb 7, 2008, 12:18:51 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/Nebulous/t/Test/Nebulous.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Nebulous/t/Test/Nebulous.pm
r16281 r16354 1 1 # Copyright (C) 2004 Joshua Hoblitt 2 2 # 3 # $Id: Nebulous.pm,v 1.1 6 2008-02-02 01:51:29jhoblitt Exp $3 # $Id: Nebulous.pm,v 1.17 2008-02-07 22:17:45 jhoblitt Exp $ 4 4 5 5 package Test::Nebulous; … … 18 18 our @EXPORT = qw( $NEB_DB $NEB_USER $NEB_PASS ); 19 19 20 our $NEB_DB = "DBI:mysql:database=nebulous:host=localhost";21 our $NEB_USER = "nebulous";22 our $NEB_PASS = '@neb@';20 our $NEB_DB = $ENV{'NEB_DB'} || "DBI:mysql:database=test:host=localhost"; 21 our $NEB_USER = $ENV{'NEB_USER'} || "test"; 22 our $NEB_PASS = $ENV{'NEB_PASS'} || ''; 23 23 24 24 my $dbh = DBI->connect( $NEB_DB, $NEB_USER, $NEB_PASS );
Note:
See TracChangeset
for help on using the changeset viewer.
