2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
FactoryBot.define do
|
2017-09-10 17:25:29 +05:30
|
|
|
factory :web_hook_log do
|
|
|
|
web_hook factory: :project_hook
|
2019-12-21 20:55:43 +05:30
|
|
|
trigger { 'push_hooks' }
|
2017-09-10 17:25:29 +05:30
|
|
|
url { generate(:url) }
|
2019-12-21 20:55:43 +05:30
|
|
|
request_headers do
|
|
|
|
{}
|
|
|
|
end
|
|
|
|
request_data do
|
|
|
|
{}
|
|
|
|
end
|
|
|
|
response_headers do
|
|
|
|
{}
|
|
|
|
end
|
|
|
|
response_body { '' }
|
|
|
|
response_status { '200' }
|
|
|
|
execution_duration { 2.0 }
|
|
|
|
internal_error_message { nil }
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
end
|