thorpedosg

Y27HUrRe

Aug 6th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. ## factories.rb
  2.  
  3. Factory.define :user do |u|
  4. u.username "godinaa"
  5. u.enabled true
  6. u.roles {|factory| [factory.association(:role)]}
  7. end
  8.  
  9. ## example
  10.  
  11. 5.times do |i|
  12. Factory.create :user, :username => "user_#{i}"
  13. end
Add Comment
Please, Sign In to add comment