Skip to content

Instantly share code, notes, and snippets.

@cyx
Created February 16, 2010 11:43
Show Gist options
  • Save cyx/305476 to your computer and use it in GitHub Desktop.
Save cyx/305476 to your computer and use it in GitHub Desktop.
require 'factory_girl'
require 'spec/support/factories'
existing = User.all
users = 20.times.map { Factory(:user) }
existing.each do |e|
users.each do |u|
Lifeline.create(:source => e, :target => u)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment