Chatwoot/spec/factories/portals.rb
2022-05-16 13:59:59 +05:30

7 lines
141 B
Ruby

FactoryBot.define do
factory :portal, class: 'Portal' do
account
name { Faker::Book.name }
slug { SecureRandom.hex }
end
end