Sha256: 6e28429a2bcd095a68b171183d4c870be2b18de1e0bf077d77be9f5e76d1fbc1
Contents?: true
Size: 382 Bytes
Versions: 14
Compression:
Stored size: 382 Bytes
Contents
FactoryGirl.define do factory :donation do amount 1000 organization end factory :sponsored_donation, :parent => :donation do after(:create) do |donation| donation.organization.fiscally_sponsored_project = FiscallySponsoredProject.new donation.organization.fiscally_sponsored_project.fs_project_id = 1 donation.organization.save end end end
Version data entries
14 entries across 14 versions & 1 rubygems