2019-10-12 18:08:41 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
FactoryBot.define do
|
|
|
|
factory :inbox do
|
|
|
|
account
|
2019-12-28 16:26:42 +00:00
|
|
|
channel { FactoryBot.build(:channel_widget, account: account) }
|
2020-01-09 07:36:40 +00:00
|
|
|
name { 'Inbox' }
|
|
|
|
|
|
|
|
after(:create) do |inbox|
|
|
|
|
inbox.channel.save!
|
|
|
|
end
|
2019-10-12 18:08:41 +00:00
|
|
|
end
|
|
|
|
end
|