readme tweaks again

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

View File

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