gitlab-org--gitlab-foss/spec/factories/ci/web_hook.rb

7 lines
163 B
Ruby
Raw Normal View History

2015-08-26 01:42:46 +00:00
FactoryGirl.define do
factory :ci_web_hook, class: Ci::WebHook do
2015-09-10 13:47:15 +00:00
sequence(:url) { FFaker::Internet.uri('http') }
project factory: :ci_project
2015-08-26 01:42:46 +00:00
end
end