problem_fabricator.rb 230 Bytes
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