Welcome to mirror list, hosted at ThFree Co, Russian Federation.

web_hook.rb « factories « ci « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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