mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
11 lines
218 B
Ruby
11 lines
218 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :account do
|
|
sequence(:name) { |n| "Account #{n}" }
|
|
status { 'active' }
|
|
domain { 'test.com' }
|
|
support_email { 'support@test.com' }
|
|
end
|
|
end
|