Skip to content

Instantly share code, notes, and snippets.

@cmatheson
Last active August 29, 2015 14:01
Show Gist options
  • Save cmatheson/26337f6d095ce48fdb4d to your computer and use it in GitHub Desktop.
Save cmatheson/26337f6d095ce48fdb4d to your computer and use it in GitHub Desktop.
Course.transaction do
c = Course.create! name: "Big Course"
c.offer
s1 = c.course_sections.create! name: "Section 1"
s2 = c.course_sections.create! name: "Section 2"
500.times { |i|
puts "creating user #{i+1}"
u = User.create! name: ("Student %03d" % (i+1))
e = c.enroll_user u, "StudentEnrollment", section: (i % 2).zero? ? s1 : s2
e.accept
}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment