Skip to content

Instantly share code, notes, and snippets.

@rynbyjn
Created October 1, 2014 20:14
Show Gist options
  • Save rynbyjn/ddbc11785c9fbcb07ae7 to your computer and use it in GitHub Desktop.
Save rynbyjn/ddbc11785c9fbcb07ae7 to your computer and use it in GitHub Desktop.
Seed test users.
(0..10).each do |num|
unless User.exists? username: "testie#{num}"
User.create! username: "testie#{num}", email: "testie#{num}@example.com", password: 'password', password_confirmation: 'password'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment