clarion/spec/factories/tracks.rb

11 lines
228 B
Ruby
Raw Normal View History

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