mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
15 lines
319 B
Ruby
15 lines
319 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryGirl.define do
|
|
factory :program do
|
|
schedule_public false
|
|
schedule_fluid false
|
|
conference
|
|
|
|
trait :with_cfp do
|
|
after(:create) { |program| create(:cfp, program: program) }
|
|
end
|
|
end
|
|
end
|