summaryrefslogtreecommitdiff
path: root/spec/factories/ci/web_hook.rb
blob: 1fde5805c943329fe0c900d9747fa96b5bdf4b01 (plain)
1
2
3
4
5
6
FactoryGirl.define do
  factory :ci_web_hook, class: Ci::WebHook do
    sequence(:url) { Faker::Internet.uri('http') }
    project
  end
end