Last active
August 29, 2015 14:01
-
-
Save cmatheson/26337f6d095ce48fdb4d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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