about summary refs log tree commit diff
path: root/spec/fabricators/webhook_fabricator.rb
blob: 477e715efa3f6ee2b99f75eb48f564eb22b54bab (plain) (blame)
1
2
3
4
5
6
7
# frozen_string_literal: true

Fabricator(:webhook) do
  url { Faker::Internet.url }
  secret { SecureRandom.hex }
  events { Webhook::EVENTS }
end