Assert there are no diary comments before creating one.

This commit is contained in:
Andy Allan 2016-09-08 09:06:26 +01:00
parent ab12b6161a
commit bb15077dcc

View 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