Chatwoot/spec/factories/labels.rb

9 lines
136 B
Ruby
Raw Normal View History

2020-06-07 05:47:13 +00:00
# frozen_string_literal: true
FactoryBot.define do
factory :label do
account
sequence(:title) { |n| "Label_#{n}" }
2020-06-07 05:47:13 +00:00
end
end