Chatwoot/spec/factories/labels.rb
Pranav Raj S 97ad39713b
Feature: Improve label experience (#975)
Co-authored-by: Sojan <sojan@pepalo.com>
2020-06-25 21:04:03 +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