summaryrefslogtreecommitdiff
path: root/spec/factories/project_hooks.rb
blob: 4fd51a2349060aa4ccc53f96720dbc66deba525e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FactoryGirl.define do
  factory :project_hook do
    url { FFaker::Internet.uri('http') }

    trait :token do
      token { SecureRandom.hex(10) }
    end

    trait :all_events_enabled do
      push_events true
      merge_requests_events true
      tag_push_events true
      issues_events true
      note_events true
      build_events true
      pipeline_events true
    end
  end
end