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

Version Path
artfully_ose-1.3.0.pre4 spec/factories/ticket_offer_factories.rb
artfully_ose-1.3.0.pre3 spec/factories/ticket_offer_factories.rb
artfully_ose-1.3.0.pre2 spec/factories/ticket_offer_factories.rb
artfully_ose-1.3.0.pre1 spec/factories/ticket_offer_factories.rb
artfully_ose-1.2.0 spec/factories/ticket_offer_factories.rb
artfully_ose-1.2.0.beta.1 spec/factories/ticket_offer_factories.rb
artfully_ose-1.2.0.alpha.2 spec/factories/ticket_offer_factories.rb
artfully_ose-1.2.0.alpha.1 spec/factories/ticket_offer_factories.rb
artfully_ose-1.2.0.pre.27 spec/factories/ticket_offer_factories.rb
artfully_ose-1.2.0.pre.26 spec/factories/ticket_offer_factories.rb
artfully_ose-1.2.0.pre.24 spec/factories/ticket_offer_factories.rb
artfully_ose-1.2.0.pre.23 spec/factories/ticket_offer_factories.rb
artfully_ose-1.2.0.pre.21 spec/factories/ticket_offer_factories.rb
artfully_ose-1.2.0.pre.20 spec/factories/ticket_offer_factories.rb