2020-03-05 20:13:12 +00:00
|
|
|
FactoryBot.define do
|
|
|
|
factory :agent_bot do
|
|
|
|
name { 'MyString' }
|
|
|
|
description { 'MyString' }
|
|
|
|
outgoing_url { 'MyString' }
|
2022-06-23 13:47:46 +00:00
|
|
|
bot_config { {} }
|
|
|
|
bot_type { 'webhook' }
|
|
|
|
|
|
|
|
trait :skip_validate do
|
|
|
|
to_create { |instance| instance.save(validate: false) }
|
|
|
|
end
|
2020-03-05 20:13:12 +00:00
|
|
|
end
|
|
|
|
end
|