From bb15077dcc5a5b4942b6a8f983eca59407d69423 Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Thu, 8 Sep 2016 09:06:26 +0100 Subject: [PATCH] Assert there are no diary comments before creating one. --- test/models/diary_entry_test.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/test/models/diary_entry_test.rb b/test/models/diary_entry_test.rb index ba70c5228..6981ebc43 100644 --- a/test/models/diary_entry_test.rb +++ b/test/models/diary_entry_test.rb @@ -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 -- 2.43.2