clarion/spec/factories/tracks.rb

11 lines
228 B
Ruby

# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryBot.define do
factory :track do
name { |n| "Track#{n}" }
color { "#000000" }
description { "Some description" }
conference
end
end