docbrown/spec/factories/webhook_endpoints.rb
rhymes 213e7bebab Routine rubocop fixes (#4924)
Ran rubocop -a and rubocop --auto-gen-config
2019-11-25 14:13:22 -05:00

8 lines
224 B
Ruby

FactoryBot.define do
factory :webhook_endpoint, class: "Webhook::Endpoint" do
target_url { Faker::Internet.url(scheme: "https") }
events { Webhook::Event::EVENT_TYPES }
user
source { "stackbit" }
end
end