Guest User

Untitled

a guest
May 19th, 2018
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. require 'factory_girl'
  2. FactoryGirl.find_definitions
  3.  
  4. android = FactoryGirl.create(:user, email: "android@ex.com", password: 'asdf')
  5. ios = FactoryGirl.create(:user, email: "ios@ex.com", password: 'asdf')
  6.  
  7. android_sub = FactoryGirl.create(:subscription, :android_sub, user: android)
  8. ios_sub = FactoryGirl.create(:subscription, :ios_sub, user: ios)
Add Comment
Please, Sign In to add comment