problem_fabricator.rb 192 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 Fabricator(:problem) do app! comments [] end Fabricator(:problem_with_comments, :from => :problem) do comments(:count => 3) { |parent, i| Fabricate(:comment, :err => parent) } end