mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
17 lines
440 B
Ruby
17 lines
440 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryGirl.define do
|
|
factory :commercial do
|
|
sequence(:url) { |n| "https://www.youtube.com/watch?v=4VrhlyIgo3M&factory=#{n}" }
|
|
|
|
factory :conference_commercial do
|
|
association :commercialable, factory: :conference
|
|
end
|
|
|
|
factory :event_commercial do
|
|
association :commercialable, factory: :event
|
|
end
|
|
end
|
|
end
|