Sha256: 5992a8c9489abc6f17df690b9930567063dede90dbbb5f4ea962456eadfcbf6a
Contents?: true
Size: 584 Bytes
Versions: 14
Compression:
Stored size: 584 Bytes
Contents
FactoryGirl.define do factory :ticket_offer do organization { FactoryGirl.create :organization } reseller_profile { FactoryGirl.create(:organization_with_reselling).reseller_profile } show do |s| event = FactoryGirl.create :event, organization: s.organization FactoryGirl.create :show, event: event end ticket_type do |to| chart = FactoryGirl.create :chart, event: to.show.event, organization: to.organization section = FactoryGirl.create :section, chart: chart FactoryGirl.create(:ticket_type, section: section) end end end
Version data entries
14 entries across 14 versions & 1 rubygems