mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-18 22:21:11 +00:00
16 lines
378 B
Ruby
16 lines
378 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryGirl.define do
|
|
factory :commercial do
|
|
commercial_type 'YouTube'
|
|
commercial_id 'test'
|
|
|
|
factory :conference_commercial do
|
|
association :commercialable, factory: :conference
|
|
end
|
|
|
|
factory :event_commercial do
|
|
association :commercialable, factory: :event
|
|
end
|
|
end
|
|
end
|