Guest User

Untitled

a guest
Jun 19th, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. Factory.sequence :number do |n|
  2. "+19876543210"
  3. end
  4.  
  5. Factory.sequence :inbox do |n|
  6. "Text #{n}"
  7. end
  8.  
  9. Factory.define :inbox, :class => 'inbox' do |inbox|
  10. inbox.text { Factory.next :inbox }
  11. inbox.number { Factory.next :number }
  12. inbox.gateway {|gateway| gateway.association(:gateway) }
  13. end
Add Comment
Please, Sign In to add comment