r = Recipe.last r.name = nil r.save
r = Recipe.last r.name = "Damn Good Pie" r.save
r = Recipe.last r.name = "Pickled beets" r.save
c = Comment.last c.body = "Take a look at this! Amazing! What we have here is a string that just so happens to be a little over one-hundred and forty characters long!!!" c.save
c = Comment.last c.recipe_id = nil c.save
r = Recipe.last r.servings = 0 r.save