Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. 5.times do
  2. user = User.new(
  3. email: RandomData.random_space_email,
  4. password: 'teatea',
  5. password_confirmation: 'teatea'
  6. )
  7. user.skip_confirmation!
  8. user.save!
  9. end
  10.  
  11. def self.random_space_email
  12. "#{@@names.sample}@#{@@space_words.sample}.#{@@space_words.sample}"
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement