Chatwoot/spec/factories/teams.rb
Sojan Jose a0c33254e7
feat: Team APIs (#1654)
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2021-01-17 23:56:56 +05:30

8 lines
146 B
Ruby

FactoryBot.define do
factory :team do
name { 'MyString' }
description { 'MyText' }
allow_auto_assign { true }
account
end
end