From 8dfcd59a77dcfa0330ea48bd050aa38a39a9235c Mon Sep 17 00:00:00 2001 From: Brian Carlson Date: Sat, 20 Nov 2010 14:44:12 -0600 Subject: [PATCH] readme tweaks --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9be33fbe..a81b0e28 100644 --- a/README.md +++ b/README.md @@ -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); }) })