]> git.openstreetmap.org Git - rails.git/blobdiff - test/models/diary_entry_test.rb
Assert there are no diary comments before creating one.
[rails.git] / test / models / diary_entry_test.rb
index ba70c5228a796593b4fe124e4f68daaf432b8869..6981ebc43f1ada17ccb0e4bc04422d663654687f 100644 (file)
@@ -28,6 +28,7 @@ class DiaryEntryTest < ActiveSupport::TestCase
 
   def test_diary_entry_comments
     diary = create(:diary_entry)
+    assert_equal(0, diary.comments.count)
     create(:diary_comment, :diary_entry => diary)
     assert_equal(1, diary.comments.count)
   end