trabajo-afectivo/spec/factories/http_log.rb
2022-01-01 14:38:12 +01:00

14 lines
492 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
FactoryBot.define do
factory :http_log do
direction { 'in' }
facility { 'cti' }
add_attribute(:method) { 'post' }
url { 'https://zammad.fqdn.com/api/v1/integration/cti/log' }
request { { content: 'foo' } }
response { { content: 'bar' } }
created_by_id { 1 }
updated_by_id { 1 }
end
end