Skip to content

Instantly share code, notes, and snippets.

@jhenkens
Created December 13, 2014 03:46
Show Gist options
  • Save jhenkens/4ccaf69c85c296501ab9 to your computer and use it in GitHub Desktop.
Save jhenkens/4ccaf69c85c296501ab9 to your computer and use it in GitHub Desktop.
users = User.all
Project.all.each do |project|
comment = FactoryGirl.create(:comment, author: users.sample, project: project)
100.times do
comment = FactoryGirl.create(:comment, author: users.sample, project: project, parent: comment)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment