Skip to content

Instantly share code, notes, and snippets.

@romariorios
Created October 27, 2009 04:25
Show Gist options
  • Save romariorios/219318 to your computer and use it in GitHub Desktop.
Save romariorios/219318 to your computer and use it in GitHub Desktop.
test "There's response" do
postCelso = Post.create(:author => "Celso", :title => "Better way to cook eggs", :text => "Does it make any differente to cook the eggs in a microwave oven rather than in a conventional one?")
postCelso.save
post = Post.create(:title => "WTF?", :text => "Do you cook your eggs in an oven?")
post.replies << postCelso
assert post.replies[0] == postCelso
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment