Chatwoot/spec/factories/channel/channel_api.rb

10 lines
250 B
Ruby
Raw Normal View History

2020-07-21 06:45:24 +00:00
FactoryBot.define do
factory :channel_api, class: 'Channel::Api' do
webhook_url { 'http://example.com' }
account
after(:create) do |channel_api|
create(:inbox, channel: channel_api, account: channel_api.account)
end
end
end