2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2014-04-30 14:48:20 +02:00
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
|
|
2014-04-09 01:32:47 +02:00
|
|
|
FactoryGirl.define do
|
2015-10-25 13:29:02 +02:00
|
|
|
factory :program do
|
|
|
|
|
schedule_public false
|
|
|
|
|
schedule_fluid false
|
2015-11-07 11:43:36 +02:00
|
|
|
conference
|
2017-06-01 01:11:28 +03:00
|
|
|
|
|
|
|
|
trait :with_cfp do
|
|
|
|
|
after(:create) { |program| create(:cfp, program: program) }
|
|
|
|
|
end
|
2014-04-09 01:32:47 +02:00
|
|
|
end
|
|
|
|
|
end
|