chatwoot-develop/spec/factories/labels.rb

9 lines
136 B
Ruby
Executable File

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