failing test for password property in config

This commit is contained in:
brianc 2010-10-19 23:26:25 -05:00
parent a4fa1f4614
commit f72f996705

View File

@ -12,16 +12,18 @@ test('client settings', function() {
test('custom', function() {
var user = 'brian';
var database = 'pgjstest';
var password = 'boom';
var client = new Client({
user: user,
database: database,
port: 321
port: 321,
password: password
});
assert.equal(client.user, user);
assert.equal(client.database, database);
assert.equal(client.port, 321);
assert.equal(client.password, password);
});
});