Chatwoot/spec/factories/labels.rb
2020-06-07 11:17:13 +05:30

8 lines
136 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :label do
account
sequence(:title) { |n| "Label #{n}" }
end
end