- note_with_hidden_comment = create(:note)
- create(:note_comment, :note => note_with_hidden_comment)
- create(:note_comment, :note => note_with_hidden_comment)
- create(:note_comment, :note => note_with_hidden_comment, :visible => false)
+ note_with_hidden_comment = create(:note_with_comments, :comments_count => 2) do |note|
+ create(:note_comment, :note => note, :visible => false)
+ end