projects
/
rails.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
ab12b61
)
Assert there are no diary comments before creating one.
author
Andy Allan
<git@gravitystorm.co.uk>
Thu, 8 Sep 2016 08:06:26 +0000
(09:06 +0100)
committer
Andy Allan
<git@gravitystorm.co.uk>
Thu, 8 Sep 2016 08:06:26 +0000
(09:06 +0100)
test/models/diary_entry_test.rb
patch
|
blob
|
history
diff --git
a/test/models/diary_entry_test.rb
b/test/models/diary_entry_test.rb
index ba70c5228a796593b4fe124e4f68daaf432b8869..6981ebc43f1ada17ccb0e4bc04422d663654687f 100644
(file)
--- 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)
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
create(:diary_comment, :diary_entry => diary)
assert_equal(1, diary.comments.count)
end