10 lines
186 B
Ruby
10 lines
186 B
Ruby
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
||
|
|
||
|
FactoryGirl.define do
|
||
|
factory :track do
|
||
|
name { |n| "Track#{n}" }
|
||
|
color '#000000'
|
||
|
conference
|
||
|
end
|
||
|
end
|