Skip to content

Instantly share code, notes, and snippets.

@muZk
Created January 25, 2017 23:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save muZk/08887fc08ecd43d985ee975c0cf8130d to your computer and use it in GitHub Desktop.
Save muZk/08887fc08ecd43d985ee975c0cf8130d to your computer and use it in GitHub Desktop.
# my_payment_factory
FactoryGirl.define do
factory :my_payment do
after(:build) do |my_payment, evaluator|
my_payment.shopping_cart = FactoryGirl.create(:shopping_cart)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment