summaryrefslogtreecommitdiff
path: root/spec/factories/alert_management/http_integrations.rb
blob: 405ec09251fc0ab0d9570db610879721538520d1 (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
# frozen_string_literal: true

FactoryBot.define do
  factory :alert_management_http_integration, class: 'AlertManagement::HttpIntegration' do
    project
    active { true }
    name { 'DataDog' }
    endpoint_identifier { SecureRandom.hex(4) }

    trait :inactive do
      active { false }
    end

    trait :active do
      active { true }
    end

    trait :legacy do
      endpoint_identifier { 'legacy' }
    end

    initialize_with { new(**attributes) }
  end
end