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