clarion/spec/factories/tracks.rb

10 lines
186 B
Ruby
Raw Normal View History

# 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