add failing test for #103

This commit is contained in:
brianc 2012-03-06 19:08:11 -06:00
parent 5e1df9a4e5
commit 5adb96f827

View File

@ -56,12 +56,13 @@ test('parsing array results', function() {
})
test('null value', function(){
client.query("SELECT '{joe,null,bob}'::text[] as names", assert.success(function(result) {
client.query("SELECT '{joe,null,bob,\"NULL\"}'::text[] as names", assert.success(function(result) {
var names = result.rows[0].names;
assert.lengthIs(names, 3);
assert.lengthIs(names, 4);
assert.equal(names[0], 'joe');
assert.equal(names[1], null);
assert.equal(names[2], 'bob');
assert.equal(names[3], 'NULL');
pg.end();
}))
})