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