Guest User

Untitled

a guest
Apr 15th, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. module FixtureReplacement
  2.  
  3. attributes_for :user do |u|
  4. email = random_email
  5.  
  6. u.username = random_username
  7. u.password = "my-pass"
  8. u.password_confirmation = "my-pass"
  9. u.education_level = default_education
  10. u.gender = "male"
  11. u.email_address = email
  12. u.email_address_confirmation = email
  13. u.date_of_birth = Time.mktime('1985', '06', '12')
  14. u.active = true
  15. end
  16.  
  17. end
Add Comment
Please, Sign In to add comment