]> git.openstreetmap.org Git - rails.git/commitdiff
Assert there are no diary comments before creating one.
authorAndy Allan <git@gravitystorm.co.uk>
Thu, 8 Sep 2016 08:06:26 +0000 (09:06 +0100)
committerAndy Allan <git@gravitystorm.co.uk>
Thu, 8 Sep 2016 08:06:26 +0000 (09:06 +0100)
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