readme tweaks

This commit is contained in:
Brian Carlson 2010-11-20 14:44:12 -06:00
parent eb427abda1
commit 8dfcd59a77

View File

@ -29,7 +29,9 @@ with love and TDD.
//handle error
return
}
assert.equal(result.rows[0].name, 'brianc')
var user = result.rows[0];
assert.equal(user.name, 'brianc');
assert.equal(user.birthday.getYear(), 2010);
})
})