summaryrefslogtreecommitdiff
path: root/spec/factories/project_hooks.rb
blob: a448d565e4b01fa1a5b56167b4d45e8b07065ac3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FactoryBot.define do
  factory :project_hook do
    url { generate(:url) }
    enable_ssl_verification false
    project

    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
      confidential_issues_events true
      note_events true
      confidential_note_events true
      job_events true
      pipeline_events true
      wiki_page_events true
    end
  end
end