15 lines
409 B
Ruby
15 lines
409 B
Ruby
# 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
|