Guest User

Untitled

a guest
Apr 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. test "There's response" do
  2. 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?")
  3. postCelso.save
  4. post = Post.create(:title => "WTF?", :text => "Do you cook your eggs in an oven?")
  5. post.replies << postCelso
  6. assert post.replies[0] == postCelso
  7. end
Add Comment
Please, Sign In to add comment