2014-08-10 20:30:37 +03:00
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
|
2019-04-28 01:25:13 +03:00
|
|
|
FactoryBot.define do
|
2014-08-10 20:30:37 +03:00
|
|
|
factory :track do
|
|
|
|
name { |n| "Track#{n}" }
|
2019-04-28 01:25:13 +03:00
|
|
|
color { '#000000' }
|
|
|
|
description { 'Some description' }
|
2014-08-10 20:30:37 +03:00
|
|
|
conference
|
|
|
|
end
|
|
|
|
end
|